Details
Description
Error log:
=======
STDOUT:
check with file size: 1
check with file size: 1073741825
check with file size: 0
STDERR:
java.lang.Exception: setLastModified failed on file: ./x.SetLastModified.dir/x.SetLastModified
========
It's caused by the test creating a file >2G, the size of which won't fit in a 32-bit signed off_t. This causes a stat() call to return EOVERFLOW. Presumably this fails on all 32-bit platforms.
=======
STDOUT:
check with file size: 1
check with file size: 1073741825
check with file size: 0
STDERR:
java.lang.Exception: setLastModified failed on file: ./x.SetLastModified.dir/x.SetLastModified
========
It's caused by the test creating a file >2G, the size of which won't fit in a 32-bit signed off_t. This causes a stat() call to return EOVERFLOW. Presumably this fails on all 32-bit platforms.