aboutsummaryrefslogtreecommitdiff
path: root/run-test-server.sh
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2015-05-20 13:23:11 -0700
committerEric Anderson <ejona@google.com>2015-05-20 14:57:36 -0700
commite03d5c0210da28c02907f7bc5e647cbdc77d3831 (patch)
tree5034ed54c3dbd2edcf8e7ef152a07cfe0c5c1fdc /run-test-server.sh
parent7a7450fff94472cb92c8fba9bc3cc3ac84b7389c (diff)
downloadgrpc-grpc-java-e03d5c0210da28c02907f7bc5e647cbdc77d3831.tar.gz
Rename integration-testing to interop-testing
"Interoperability" is a more appropriate name for the tests, since they are used for testing across different implementations. They will do a bit of integration testing, like for auth, but this is a smaller scale. It seems the other languages (Go, C++, Node, PHP, Python, Ruby) are using "interop" to describe the tests, and the test case specifications document is named with "interop". After this change, C# will be the only language calling them "integration" tests. This change just renames the folder and artifact. We can change the internal package names later. However, once we do a release, old artifact names will live forever in Maven Central.
Diffstat (limited to 'run-test-server.sh')
-rwxr-xr-xrun-test-server.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-test-server.sh b/run-test-server.sh
index a5a3bdb4c..28cb9f9cc 100755
--- a/run-test-server.sh
+++ b/run-test-server.sh
@@ -2,6 +2,6 @@
cd "$(dirname "$0")"
cat >&2 <<EOF
Gradle is no longer run automatically. Make sure to run './gradlew installDist' or
-'./gradlew :grpc-integration-testing:installDist' after any changes.
+'./gradlew :grpc-interop-testing:installDist' after any changes.
EOF
-exec ./integration-testing/build/install/grpc-integration-testing/bin/test-server "$@"
+exec ./interop-testing/build/install/grpc-interop-testing/bin/test-server "$@"