Skip to content

Commit

Permalink
Start the timeout after the build finishes
Browse files Browse the repository at this point in the history
  • Loading branch information
vjpai committed Feb 23, 2016
1 parent 19432c3 commit 3c50e70
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tools/jenkins/run_performance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@
# This script is invoked by Jenkins and runs performance smoke test.
set -ex

#
# Put a timeout on this test
#
((sleep 900; kill $$)&)
# Enter the gRPC repo root
cd $(dirname $0)/../..

Expand All @@ -52,6 +47,11 @@ PID1=$!
bins/$config/qps_worker -driver_port 10010 &
PID2=$!

#
# Put a timeout on these tests
#
((sleep 900; kill $$)&)
export QPS_WORKERS="localhost:10000,localhost:10010"
# big is the size in bytes of large messages (0 is the size otherwise)
Expand Down

0 comments on commit 3c50e70

Please sign in to comment.