diff options
author | Zach Koopmans <zkoopmans@google.com> | 2020-09-01 21:01:33 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-09 17:53:10 -0700 |
commit | d19d0d44f6b910f777d3ddd880cef21324758bf2 (patch) | |
tree | c822d0bf44c89c6158f2be7d017800b6fe5aad55 | |
parent | 8a8f457862e093f8d513b92769ebdf637929891a (diff) |
Fix statfs test for opensource.
PiperOrigin-RevId: 329638946
-rw-r--r-- | test/syscalls/linux/statfs.cc | 3 |
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) { |