summaryrefslogtreecommitdiffhomepage
path: root/test/syscalls
diff options
context:
space:
mode:
authorJamie Liu <jamieliu@google.com>2019-01-07 15:04:00 -0800
committerShentubot <shentubot@google.com>2019-01-07 15:05:10 -0800
commite44cb43b9c2292239c33fb77ddd6510ef52e1a7a (patch)
tree4f9876a05a72bdff43f04e0cbaf03b0bed9756c4 /test/syscalls
parent4a4cc7dc3794535f3d65736cde4293ecf0e565e0 (diff)
Default syscall_test shard_count to 5.
PiperOrigin-RevId: 228243120 Change-Id: I2726d580f4f9fad0ecc6a912e0e576ed9e08ce72
Diffstat (limited to 'test/syscalls')
-rw-r--r--test/syscalls/build_defs.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/syscalls/build_defs.bzl b/test/syscalls/build_defs.bzl
index d7feeb9e1..f0c914095 100644
--- a/test/syscalls/build_defs.bzl
+++ b/test/syscalls/build_defs.bzl
@@ -2,7 +2,7 @@
# syscall_test is a macro that will create targets to run the given test target
# on the host (native) and runsc.
-def syscall_test(test, shard_count = 1, size = "small"):
+def syscall_test(test, shard_count = 5, size = "small"):
_syscall_test(test, shard_count, size, "native")
_syscall_test(test, shard_count, size, "kvm")
_syscall_test(test, shard_count, size, "ptrace")