diff options
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r-- | test/syscalls/linux/BUILD | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index a4efd9486..ed2adfbc9 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -4171,6 +4171,22 @@ cc_binary( ) cc_binary( + name = "mq_test", + testonly = 1, + srcs = ["mq.cc"], + linkstatic = 1, + linkopts = [ + "-lrt", + ], + deps = [ + "//test/util:posix_error", + "//test/util:test_main", + "//test/util:temp_path", + "//test/util:test_util", + ], +) + +cc_binary( name = "semaphore_test", testonly = 1, # Android does not support XSI semaphores in r22. |