diff options
author | Andrei Vagin <avagin@google.com> | 2021-02-09 10:34:49 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-02-09 10:37:04 -0800 |
commit | fe4f4789601ddf61260271f7e1d33ba0f2756fcd (patch) | |
tree | b0d095cfb8246424bf2c2a54fa7ee4cda6914bd1 /test/syscalls/linux/BUILD | |
parent | d6dbe6e5ca5445dac278d3b6654af8d13379878a (diff) |
kernel: reparentLocked has to update children maps of old and new parents
Reported-by: syzbot+9ffc71246fe72c73fc25@syzkaller.appspotmail.com
PiperOrigin-RevId: 356536113
Diffstat (limited to 'test/syscalls/linux/BUILD')
-rw-r--r-- | test/syscalls/linux/BUILD | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/syscalls/linux/BUILD b/test/syscalls/linux/BUILD index 80e2837f8..499027e7c 100644 --- a/test/syscalls/linux/BUILD +++ b/test/syscalls/linux/BUILD @@ -4160,6 +4160,18 @@ cc_binary( ) cc_binary( + name = "processes_test", + testonly = 1, + srcs = ["processes.cc"], + linkstatic = 1, + deps = [ + "//test/util:capability_util", + "//test/util:test_main", + "//test/util:test_util", + ], +) + +cc_binary( name = "xattr_test", testonly = 1, srcs = [ |