summaryrefslogtreecommitdiffhomepage
path: root/test/syscalls/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'test/syscalls/BUILD')
-rw-r--r--test/syscalls/BUILD46
1 files changed, 31 insertions, 15 deletions
diff --git a/test/syscalls/BUILD b/test/syscalls/BUILD
index ef299799e..0435f61a2 100644
--- a/test/syscalls/BUILD
+++ b/test/syscalls/BUILD
@@ -3,6 +3,8 @@ load("//test/runner:defs.bzl", "syscall_test")
package(licenses = ["notice"])
+# Please keep syscall tests ordered alphabetically by name.
+
syscall_test(
test = "//test/syscalls/linux:32bit_test",
)
@@ -56,17 +58,7 @@ syscall_test(
)
syscall_test(
- test = "//test/syscalls/linux:socket_test",
-)
-
-syscall_test(
- test = "//test/syscalls/linux:socket_capability_test",
-)
-
-syscall_test(
- size = "large",
- shard_count = most_shards,
- test = "//test/syscalls/linux:socket_stress_test",
+ test = "//test/syscalls/linux:cgroup_test",
)
syscall_test(
@@ -244,6 +236,10 @@ syscall_test(
)
syscall_test(
+ test = "//test/syscalls/linux:verity_ioctl_test",
+)
+
+syscall_test(
test = "//test/syscalls/linux:iptables_test",
)
@@ -307,6 +303,10 @@ syscall_test(
)
syscall_test(
+ test = "//test/syscalls/linux:mlock_test",
+)
+
+syscall_test(
size = "medium",
shard_count = more_shards,
test = "//test/syscalls/linux:mmap_test",
@@ -604,6 +604,10 @@ syscall_test(
)
syscall_test(
+ test = "//test/syscalls/linux:socket_capability_test",
+)
+
+syscall_test(
size = "medium",
test = "//test/syscalls/linux:socket_domain_non_blocking_test",
)
@@ -772,8 +776,17 @@ syscall_test(
)
syscall_test(
- # NOTE(b/116636318): Large sendmsg may stall a long time.
- size = "enormous",
+ size = "large",
+ shard_count = most_shards,
+ test = "//test/syscalls/linux:socket_stress_test",
+)
+
+syscall_test(
+ test = "//test/syscalls/linux:socket_test",
+)
+
+syscall_test(
+ flaky = 1, # NOTE(b/116636318): Large sendmsg may stall a long time.
shard_count = more_shards,
test = "//test/syscalls/linux:socket_unix_dgram_local_test",
)
@@ -791,8 +804,7 @@ syscall_test(
)
syscall_test(
- # NOTE(b/116636318): Large sendmsg may stall a long time.
- size = "enormous",
+ flaky = 1, # NOTE(b/116636318): Large sendmsg may stall a long time.
shard_count = more_shards,
test = "//test/syscalls/linux:socket_unix_seqpacket_local_test",
)
@@ -995,3 +1007,7 @@ syscall_test(
syscall_test(
test = "//test/syscalls/linux:processes_test",
)
+
+syscall_test(
+ test = "//test/syscalls/linux:verity_mount_test",
+)