summaryrefslogtreecommitdiffhomepage
path: root/test/util/fs_util.h
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-01-30 14:03:22 -0800
committergVisor bot <gvisor-bot@google.com>2020-01-30 14:03:22 -0800
commitd62362f63fb86591832ee8e36e833df20b8218f6 (patch)
treece543d5fe19d2db7b125278f412bf241158c7273 /test/util/fs_util.h
parent4ee64a248ec16fcc9e526a457a66648546611bfb (diff)
parent49e84b10e5ed7f94e6cbe003b9f7268e8235bb08 (diff)
Merge pull request #1630 from xiaobo55x:kOLargeFile
PiperOrigin-RevId: 292419699
Diffstat (limited to 'test/util/fs_util.h')
-rw-r--r--test/util/fs_util.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/util/fs_util.h b/test/util/fs_util.h
index ee1b341d7..caf19b24d 100644
--- a/test/util/fs_util.h
+++ b/test/util/fs_util.h
@@ -26,6 +26,17 @@
namespace gvisor {
namespace testing {
+
+// O_LARGEFILE as defined by Linux. glibc tries to be clever by setting it to 0
+// because "it isn't needed", even though Linux can return it via F_GETFL.
+#if defined(__x86_64__)
+constexpr int kOLargeFile = 00100000;
+#elif defined(__aarch64__)
+constexpr int kOLargeFile = 00400000;
+#else
+#error "Unknown architecture"
+#endif
+
// Returns a status or the current working directory.
PosixErrorOr<std::string> GetCWD();