aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/performance
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-05-11 12:26:39 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-05-11 12:26:39 -0700
commit649d126ed3bcef2b22b6cc53a35a0ac75c0cee14 (patch)
tree489959399dcf299c67e5308807ac62f00ca82986 /tools/run_tests/performance
parentf624a796e794750ea243341da2d56462204ae9a8 (diff)
set GOPATH when executing go worker
Diffstat (limited to 'tools/run_tests/performance')
-rwxr-xr-xtools/run_tests/performance/run_worker_go.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run_tests/performance/run_worker_go.sh b/tools/run_tests/performance/run_worker_go.sh
index f7f2ece137..6b1242a419 100755
--- a/tools/run_tests/performance/run_worker_go.sh
+++ b/tools/run_tests/performance/run_worker_go.sh
@@ -32,4 +32,6 @@ set -ex
cd $(dirname $0)/../../..
-../gopath/bin/worker $@
+export GOPATH=$(pwd)/../gopath
+
+${GOPATH}/bin/worker $@