diff options
author | Michael Pratt <mpratt@google.com> | 2019-12-09 11:21:01 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-09 11:22:31 -0800 |
commit | 498595d54347d711dbd24247ed12c659b9d89c58 (patch) | |
tree | e6d6b84817bb06976f371e18ada3fd65d0c0bb2f /test/syscalls/BUILD | |
parent | 01eadf51ea54b8f478c49b755d712f11fff2b28c (diff) |
Add tests for rseq(2)
Add a decent set of syscall tests for rseq(2). These are a bit awkward because
of issues with library integration. libc may register rseq on thread start
(including before main on the initial thread), precluding much testing. Thus we
run tests in a libc-free subprocess.
Support for rseq(2) in gVisor will come in a later commit.
PiperOrigin-RevId: 284595994
Diffstat (limited to 'test/syscalls/BUILD')
-rw-r--r-- | test/syscalls/BUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/syscalls/BUILD b/test/syscalls/BUILD index 6650984fa..829693e8e 100644 --- a/test/syscalls/BUILD +++ b/test/syscalls/BUILD @@ -376,6 +376,8 @@ syscall_test( syscall_test(test = "//test/syscalls/linux:rlimits_test") +syscall_test(test = "//test/syscalls/linux:rseq_test") + syscall_test(test = "//test/syscalls/linux:rtsignal_test") syscall_test(test = "//test/syscalls/linux:sched_test") |