summaryrefslogtreecommitdiffhomepage
path: root/kokoro
diff options
context:
space:
mode:
authorNicolas Lacasse <nlacasse@google.com>2018-07-13 11:22:01 -0700
committerShentubot <shentubot@google.com>2018-07-13 11:23:05 -0700
commit68cf86b6300ad8903e240607dcc8bedd12fcc0ee (patch)
tree1c188a8ece62976279f2af061f7d16eab61babe9 /kokoro
parentf09ebd9c71eecdfb79f64b6abb26db3b66b8156b (diff)
Point the Kokoro test script to the actual location of install.sh.
PiperOrigin-RevId: 204501071 Change-Id: Ia5f7ca725bf68ee53ff3922b13c75c0685467ce9
Diffstat (limited to 'kokoro')
-rwxr-xr-xkokoro/gcp_ubuntu/run_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/kokoro/gcp_ubuntu/run_tests.sh b/kokoro/gcp_ubuntu/run_tests.sh
index 978a21599..0069aa0c4 100755
--- a/kokoro/gcp_ubuntu/run_tests.sh
+++ b/kokoro/gcp_ubuntu/run_tests.sh
@@ -33,7 +33,7 @@ bazel build //...
# Test use this variable to determine what runtime to use.
runtime=runsc_test_$((RANDOM))
-sudo -n ./runsc/test/image/install.sh --runtime ${runtime}
+sudo -n ./runsc/test/install.sh --runtime ${runtime}
# Run the tests and upload results.
#
@@ -56,7 +56,7 @@ if [[ ${exit_code} -eq 0 ]]; then
fi
# Best effort to uninstall
-sudo -n ./runsc/test/image/install.sh -u --runtime ${runtime}
+sudo -n ./runsc/test/install.sh -u --runtime ${runtime}
set -e
# Find and rename all test xml and log files so that Sponge can pick them up.