summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@google.com>2020-04-30 11:31:37 -0700
committergVisor bot <gvisor-bot@google.com>2020-04-30 11:33:07 -0700
commitc01e103256a75de4488f50fd34506222c058c151 (patch)
treea706f2bc9cc7d67a6509c4ef42aca7f37b2d4a4d
parent043b7d83bd76c616fa32b815528eec77f2aad5ff (diff)
Allow to run kvm syscall tests on the RBE cluster
PiperOrigin-RevId: 309265978
-rwxr-xr-xscripts/syscall_kvm_tests.sh5
-rw-r--r--tools/bazeldefs/platforms.bzl5
2 files changed, 3 insertions, 7 deletions
diff --git a/scripts/syscall_kvm_tests.sh b/scripts/syscall_kvm_tests.sh
index de85daa5a..0e5d86727 100755
--- a/scripts/syscall_kvm_tests.sh
+++ b/scripts/syscall_kvm_tests.sh
@@ -16,6 +16,5 @@
source $(dirname $0)/common.sh
-# TODO(b/112165693): "test --test_tag_filters=runsc_kvm" can be used
-# when the "manual" tag will be removed for kvm tests.
-test `bazel query "attr(tags, runsc_kvm, tests(//test/syscalls/...))"`
+# Run all ptrace-variants of the system call tests.
+test --test_tag_filters=runsc_kvm //test/syscalls/...
diff --git a/tools/bazeldefs/platforms.bzl b/tools/bazeldefs/platforms.bzl
index 132040c20..165b22311 100644
--- a/tools/bazeldefs/platforms.bzl
+++ b/tools/bazeldefs/platforms.bzl
@@ -3,10 +3,7 @@
# Platform to associated tags.
platforms = {
"ptrace": [],
- "kvm": [
- "manual",
- "local",
- ],
+ "kvm": [],
}
default_platform = "ptrace"