2014-10-29 07:14:27 +08:00
|
|
|
#!/bin/bash -e
|
2015-03-23 07:30:00 +08:00
|
|
|
cd "$(dirname "$0")"
|
2015-05-08 01:21:28 +08:00
|
|
|
cat >&2 <<EOF
|
2015-07-02 04:20:19 +08:00
|
|
|
Gradle is no longer run automatically. Make sure to run
|
|
|
|
'./gradlew installDist -PskipCodegen=true' or
|
|
|
|
'./gradlew :grpc-interop-testing:installDist -PskipCodegen' after any changes.
|
|
|
|
-PskipCodegen=true is optional, but requires less setup.
|
2015-05-08 01:21:28 +08:00
|
|
|
EOF
|
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.
2015-05-21 04:23:11 +08:00
|
|
|
exec ./interop-testing/build/install/grpc-interop-testing/bin/test-server "$@"
|