mirror of https://github.com/grpc/grpc-java.git
Stop running gradle in run-test-{client,server}.sh
This substantially decreases the amount of time to run a client test via the script.
This commit is contained in:
parent
1fa11cea1f
commit
86207752b7
|
@ -1,4 +1,7 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
./gradlew :grpc-integration-testing:installDist
|
cat >&2 <<EOF
|
||||||
./integration-testing/build/install/grpc-integration-testing/bin/test-client "$@"
|
Gradle is no longer run automatically. Make sure to run './gradlew installDist' or
|
||||||
|
'./gradlew :grpc-integration-testing:installDist' after any changes.
|
||||||
|
EOF
|
||||||
|
exec ./integration-testing/build/install/grpc-integration-testing/bin/test-client "$@"
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
./gradlew :grpc-integration-testing:installDist
|
cat >&2 <<EOF
|
||||||
./integration-testing/build/install/grpc-integration-testing/bin/test-server "$@"
|
Gradle is no longer run automatically. Make sure to run './gradlew installDist' or
|
||||||
|
'./gradlew :grpc-integration-testing:installDist' after any changes.
|
||||||
|
EOF
|
||||||
|
exec ./integration-testing/build/install/grpc-integration-testing/bin/test-server "$@"
|
||||||
|
|
Loading…
Reference in New Issue