summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorRidwan Sharif <ridwanmsharif@google.com>2020-06-17 16:23:27 -0400
committerRidwan Sharif <ridwanmsharif@google.com>2020-06-25 14:22:21 -0400
commita63db7d90303280de9431f369e5a9c8db351a9e8 (patch)
tree8716e8e0380f2702a35fb005402b6516a16a8225 /test
parentbd5f0e2dc42866f28437f07b1a24e19d1748c3ea (diff)
Moved FUSE device under the fuse directory
Diffstat (limited to 'test')
-rw-r--r--test/syscalls/linux/dev.cc3
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());