diff options
author | Fabricio Voznika <fvoznika@google.com> | 2021-03-08 14:46:03 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-08 14:48:16 -0800 |
commit | 1b9d45dbe8755914d07937ad348211f60ffcfc01 (patch) | |
tree | 256eabd3743e3694a87e2a8ed62f5db542b307de /test/perf/BUILD | |
parent | 5a75a932029fb5de712b2ae4ec62be6bfe6ce6f8 (diff) |
Run shards in a single sandbox
Run all tests (or a given test partition) in a single sandbox.
Previously, each individual unit test executed in a new
sandbox, which takes much longer to execute.
Before After
Syscall tests: 37m22.768s 14m5.272s
PiperOrigin-RevId: 361661726
Diffstat (limited to 'test/perf/BUILD')
-rw-r--r-- | test/perf/BUILD | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/perf/BUILD b/test/perf/BUILD index e25f090ae..ed899ac22 100644 --- a/test/perf/BUILD +++ b/test/perf/BUILD @@ -1,4 +1,3 @@ -load("//tools:defs.bzl", "more_shards") load("//test/runner:defs.bzl", "syscall_test") package(licenses = ["notice"]) @@ -38,7 +37,6 @@ syscall_test( syscall_test( size = "enormous", debug = False, - shard_count = more_shards, tags = ["nogotsan"], test = "//test/perf/linux:getdents_benchmark", ) |