diff options
author | Jamie Liu <jamieliu@google.com> | 2019-01-29 09:05:51 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-01-29 09:06:59 -0800 |
commit | 3c5f8dfd4b0a7157343bacb62620e4f11612c3b7 (patch) | |
tree | 7a150c0a9e015a900226da08a3ac407cde942aa2 /test/syscalls/linux/BUILD | |
parent | 57c202ead2d937e40c5d10da409504ac474165d1 (diff) |
Don't assume that stdout is always writable in PollTest.Nfds.
stdout can be (and, in automated testing, often is) a host pipe or
similar resource shared between multiple parallel tests, such that it
can become transiently full during testing.
PiperOrigin-RevId: 231413569
Change-Id: Id14991b5f71e53c894695899e65e1be4dd228cc6
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r-- | test/syscalls/linux/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index 8cf83b311..e70742875 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -1246,6 +1246,7 @@ cc_binary( linkstatic = 1, deps = [ ":base_poll_test", + "//test/util:eventfd_util", "//test/util:file_descriptor", "//test/util:logging", "//test/util:test_main", |