summaryrefslogtreecommitdiffhomepage
path: root/test/syscalls/BUILD
diff options
context:
space:
mode:
authorIan Gudger <igudger@google.com>2020-02-04 15:20:30 -0800
committergVisor bot <gvisor-bot@google.com>2020-02-04 15:54:49 -0800
commita26a954946ad2e7910d3ad7578960a93b73a1f9b (patch)
treef87bd8ac57807d09cb0d2d861c09966bcb202820 /test/syscalls/BUILD
parent3f5642c5afdb8e633287ba10c2cb6b00f1849570 (diff)
Add socket connection stress test.
Tests 65k connection attempts on common types of sockets to check for port leaks. Also fixes a bug where dual-stack sockets wouldn't properly re-queue segments received while closing. PiperOrigin-RevId: 293241166
Diffstat (limited to 'test/syscalls/BUILD')
-rw-r--r--test/syscalls/BUILD9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/syscalls/BUILD b/test/syscalls/BUILD
index 8f2b75a1c..31d239c0e 100644
--- a/test/syscalls/BUILD
+++ b/test/syscalls/BUILD
@@ -46,6 +46,15 @@ syscall_test(test = "//test/syscalls/linux:brk_test")
syscall_test(test = "//test/syscalls/linux:socket_test")
syscall_test(
+ size = "large",
+ shard_count = 50,
+ # Takes too long for TSAN. Since this is kind of a stress test that doesn't
+ # involve much concurrency, TSAN's usefulness here is limited anyway.
+ tags = ["nogotsan"],
+ test = "//test/syscalls/linux:socket_stress_test",
+)
+
+syscall_test(
add_overlay = True,
test = "//test/syscalls/linux:chdir_test",
)