diff options
author | Elliott Hughes <enh@google.com> | 2016-02-03 18:43:17 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-02-03 18:43:17 +0000 |
commit | b3cfafd2bd3aa307457fe89573d6ac232a5de1c6 (patch) | |
tree | 9e3f941adea3e014a39fcd89c6955f57cc9e5d3d /tests/stdio_test.cpp | |
parent | 3e75110bcb1d7b941ab0633e7e5c36c604512ded (diff) | |
parent | e4fa6e9cc7f894a5a85ca50249b1f6e9efd49d3a (diff) |
Merge "Expose ftello64."
Diffstat (limited to 'tests/stdio_test.cpp')
-rw-r--r-- | tests/stdio_test.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/stdio_test.cpp b/tests/stdio_test.cpp index b6f652688..0d21dec57 100644 --- a/tests/stdio_test.cpp +++ b/tests/stdio_test.cpp @@ -1165,6 +1165,7 @@ TEST(STDIO_TEST, lots_of_concurrent_files) { static void AssertFileOffsetAt(FILE* fp, off64_t offset) { EXPECT_EQ(offset, ftell(fp)); EXPECT_EQ(offset, ftello(fp)); + EXPECT_EQ(offset, ftello64(fp)); fpos_t pos; fpos64_t pos64; EXPECT_EQ(0, fgetpos(fp, &pos)); |