diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-07-31 12:03:16 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-08-06 11:40:18 -0700 |
commit | cdabaca649b63822d57ad6859d5e353285c7a25b (patch) | |
tree | 3baba980653a947b4a3383d3aca3e6d536279563 /src | |
parent | a3428f3b4f41c44bc383f4851ab8c4fac93158b2 (diff) |
Run test server with and without SSL
Diffstat (limited to 'src')
-rwxr-xr-x | src/objective-c/tests/run_tests.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/objective-c/tests/run_tests.sh b/src/objective-c/tests/run_tests.sh index b13c0f0633..7b133c1782 100755 --- a/src/objective-c/tests/run_tests.sh +++ b/src/objective-c/tests/run_tests.sh @@ -37,7 +37,8 @@ cd $(dirname $0) # Run the tests server. ../../../bins/$CONFIG/interop_server --port=5050 & -# Kill it when this script exits. +../../../bins/$CONFIG/interop_server --port=5051 --enable_ssl & +# Kill them when this script exits. trap 'kill -9 `jobs -p`' EXIT # xcodebuild is very verbose. We filter its output and tell Bash to fail if any |