diff options
author | Fabricio Voznika <fvoznika@google.com> | 2019-06-26 14:23:35 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-06-26 14:24:44 -0700 |
commit | 42e212f6b7d4f6dd70e9751562f1524231e39a0e (patch) | |
tree | ead76a098737fe0bf48b52c9091f1edc88009f67 /test/syscalls/BUILD | |
parent | 857e5c47e914aeeec12662d85466d91bf4ce3504 (diff) |
Preserve permissions when checking lower
The code was wrongly assuming that only read access was
required from the lower overlay when checking for permissions.
This allowed non-writable files to be writable in the overlay.
Fixes #316
PiperOrigin-RevId: 255263686
Diffstat (limited to 'test/syscalls/BUILD')
-rw-r--r-- | test/syscalls/BUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/syscalls/BUILD b/test/syscalls/BUILD index 731e2aa85..b06e46c03 100644 --- a/test/syscalls/BUILD +++ b/test/syscalls/BUILD @@ -240,7 +240,7 @@ syscall_test( syscall_test(test = "//test/syscalls/linux:munmap_test") syscall_test( - add_overlay = False, # TODO(gvisor.dev/issue/316): enable when fixed. + add_overlay = True, test = "//test/syscalls/linux:open_create_test", ) |