From 0e82f9f3fb76600e4c7987f95a65b140860ee845 Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Thu, 22 Aug 2019 14:15:20 -0700 Subject: [PATCH] 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 --- test/syscalls/build_defs.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,