summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@google.com>2019-08-22 14:15:20 -0700
committergVisor bot <gvisor-bot@google.com>2019-08-22 14:16:31 -0700
commit0e82f9f3fb76600e4c7987f95a65b140860ee845 (patch)
tree7ca97b4a095e65d84c0f5be12b1b77cfd17dd3e6 /test
parent0034aaa82ac00a75866e77a3570febdec8d291d1 (diff)
test: set shard_count to 5 by default
In cl/264434674 and cl/264498919, we stop running test cases in parallel to not overload test hosts. But now tests requires more time to run, so we need to increase a default number of shards or a default test timeout. Let's start with increasing the number of shards and see how it will works. PiperOrigin-RevId: 264917055
Diffstat (limited to 'test')
-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 a63eda81d..771d171f8 100644
--- a/test/syscalls/build_defs.bzl
+++ b/test/syscalls/build_defs.bzl
@@ -4,7 +4,7 @@
# on the host (native) and runsc.
def syscall_test(
test,
- shard_count = 1,
+ shard_count = 5,
size = "small",
use_tmpfs = False,
add_overlay = False,