diff options
author | Ridwan Sharif <ridwanmsharif@google.com> | 2020-06-17 16:23:27 -0400 |
---|---|---|
committer | Ridwan Sharif <ridwanmsharif@google.com> | 2020-06-25 14:22:21 -0400 |
commit | a63db7d90303280de9431f369e5a9c8db351a9e8 (patch) | |
tree | 8716e8e0380f2702a35fb005402b6516a16a8225 /test/syscalls/linux | |
parent | bd5f0e2dc42866f28437f07b1a24e19d1748c3ea (diff) |
Moved FUSE device under the fuse directory
Diffstat (limited to 'test/syscalls/linux')
-rw-r--r-- | test/syscalls/linux/dev.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/syscalls/linux/dev.cc b/test/syscalls/linux/dev.cc index 82b115981..6be173c14 100644 --- a/test/syscalls/linux/dev.cc +++ b/test/syscalls/linux/dev.cc @@ -165,7 +165,8 @@ TEST(DevTest, WriteDevFuse) { } TEST(DevTest, TTYExists) { - SKIP_IF(!IsRunningWithVFS1()); + // Run test if running on VFS1 or on Linux. + SKIP_IF(!IsRunningWithVFS1() && IsRunningOnGvisor()); struct stat statbuf = {}; ASSERT_THAT(stat("/dev/tty", &statbuf), SyscallSucceeds()); |