summaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/common_bazel.sh2
-rwxr-xr-xscripts/kvm_tests.sh7
2 files changed, 4 insertions, 5 deletions
diff --git a/scripts/common_bazel.sh b/scripts/common_bazel.sh
index 5340c7323..dc0e2041d 100755
--- a/scripts/common_bazel.sh
+++ b/scripts/common_bazel.sh
@@ -56,7 +56,7 @@ function test() {
(bazel test "${BAZEL_RBE_FLAGS[@]}" "${BAZEL_RBE_AUTH_FLAGS[@]}" "${BAZEL_FLAGS[@]}" "$@" && rc=0) || rc=$?
# Zip out everything into a convenient form.
- if [[ -v KOKORO_ARTIFACTS_DIR ]]; then
+ if [[ -v KOKORO_ARTIFACTS_DIR ]] && [[ -e bazel-testlogs ]]; then
find -L "bazel-testlogs" -name "test.xml" -o -name "test.log" -o -name "outputs.zip" |
tar --create --files-from - --transform 's/test\./sponge_log./' |
tar --extract --directory ${KOKORO_ARTIFACTS_DIR}
diff --git a/scripts/kvm_tests.sh b/scripts/kvm_tests.sh
index 5cb7aa007..b6d787f0f 100755
--- a/scripts/kvm_tests.sh
+++ b/scripts/kvm_tests.sh
@@ -20,11 +20,10 @@ source $(dirname $0)/common.sh
(lsmod | grep -E '^(kvm_intel|kvm_amd)') || sudo modprobe kvm
sudo chmod a+rw /dev/kvm
-# Run all KVM-tagged tests (locally).
-test --test_strategy=standalone --test_tag_filters=requires-kvm //...
-test --test_strategy=standalone //pkg/sentry/platform/kvm:kvm_test
+# Run all KVM platform tests (locally).
+run_as_root //pkg/sentry/platform/kvm:kvm_test
# Install the KVM runtime and run all integration tests.
run_as_root //runsc install --experimental=true -- --debug --strace --log-packets --platform=kvm
sudo systemctl restart docker
-test --test_strategy=standalone //test/image:image_test //test/e2e:integration_test
+test //test/image:image_test //test/e2e:integration_test