summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorZach Koopmans <zkoopmans@google.com>2020-09-01 21:01:33 -0700
committergVisor bot <gvisor-bot@google.com>2020-09-01 21:03:48 -0700
commit563f28b7d56c11a418856f1defeb64e72beb0e9a (patch)
tree219cfab635f307f2ac66fc11e1023aecfa59f389 /test
parent37a217aca4a128d66a6dd4969375ea81bd879ac7 (diff)
Fix statfs test for opensource.
PiperOrigin-RevId: 329638946
Diffstat (limited to 'test')
-rw-r--r--test/syscalls/linux/statfs.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/syscalls/linux/statfs.cc b/test/syscalls/linux/statfs.cc
index 49f2f156c..99ab280fd 100644
--- a/test/syscalls/linux/statfs.cc
+++ b/test/syscalls/linux/statfs.cc
@@ -43,9 +43,6 @@ TEST(StatfsTest, InternalTmpfs) {
struct statfs st;
EXPECT_THAT(statfs(temp_file.path().c_str(), &st), SyscallSucceeds());
- // Note: We could be an overlay or goferfs on some configurations.
- EXPECT_TRUE(st.f_type == TMPFS_MAGIC || st.f_type == OVERLAYFS_SUPER_MAGIC ||
- st.f_type == V9FS_MAGIC);
}
TEST(StatfsTest, InternalDevShm) {