diff options
author | Michael Pratt <mpratt@google.com> | 2019-03-01 14:37:18 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-03-01 14:38:10 -0800 |
commit | 96226f9a473c0c55e0b632f9fbe883b078a234ea (patch) | |
tree | b0f0afe2857be2d5973b679c52d0c8ca198d573d /test/syscalls/BUILD | |
parent | 9177bcd0ba7f68bd5e28123c95fe0d69f822703e (diff) |
Mark socket_ipv4_udp_unbound_loopback flaky
To do so, we must add the ability to add tags to the syscall tests.
PiperOrigin-RevId: 236380371
Change-Id: I76d15feb2700f20115b27aab362a88cebe8c7a6a
Diffstat (limited to 'test/syscalls/BUILD')
-rw-r--r-- | test/syscalls/BUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/syscalls/BUILD b/test/syscalls/BUILD index 1be7a9bd4..39f1de0c9 100644 --- a/test/syscalls/BUILD +++ b/test/syscalls/BUILD @@ -363,7 +363,11 @@ syscall_test( test = "//test/syscalls/linux:socket_ip_udp_loopback_test", ) -syscall_test(test = "//test/syscalls/linux:socket_ipv4_udp_unbound_loopback_test") +syscall_test( + # FIXME + tags = ["flaky"], + test = "//test/syscalls/linux:socket_ipv4_udp_unbound_loopback_test", +) syscall_test(test = "//test/syscalls/linux:socket_netdevice_test") |