From 2b48624e9c959a6b3076e2ec3719644bad53722c Mon Sep 17 00:00:00 2001 From: jregan Date: Tue, 15 May 2018 17:47:31 -0700 Subject: [PATCH] tweak integration test script --- demos/integration_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/integration_tests.sh b/demos/integration_tests.sh index 0f37c115c..450124234 100755 --- a/demos/integration_tests.sh +++ b/demos/integration_tests.sh @@ -37,14 +37,14 @@ export PATH=$GOPATH/bin:$PATH function runTest { local script=$1 shift - local args=$@ + local args=$@ if [ ! -x "$script" ]; then exit_with "Unable to run $script" fi $script "$args" - if [ $? -ne 0 ]; then + if [ $? -ne 0 ]; then exit_with "Failed: $script $args" fi echo "$script passed."