diff --git a/test/fuse/BUILD b/test/fuse/BUILD index 851195413..484381a76 100644 --- a/test/fuse/BUILD +++ b/test/fuse/BUILD @@ -4,80 +4,144 @@ package(licenses = ["notice"]) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:stat_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:statfs_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:open_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:release_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:mknod_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:symlink_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:readlink_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:mkdir_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:read_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:write_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:rmdir_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:readdir_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:create_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:unlink_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:setstat_test", ) syscall_test( allow_native = False, + tags = [ + "noguitar", + "notap", + ], test = "//test/fuse/linux:mount_test", ) diff --git a/test/fuse/README.md b/test/fuse/README.md index 7a960ff18..6b8519513 100644 --- a/test/fuse/README.md +++ b/test/fuse/README.md @@ -1,5 +1,7 @@ # gVisor FUSE Test Suite +## This test framework is deprecated. Please use the `usefusefs=True` in syscall tests to test FUSE going forward. + This is an integration test suite for fuse(4) filesystem. It runs under gVisor sandbox container with FUSE function enabled.