diff options
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)); |