xslate / p5-Text-Xslate

Scalable template engine for Perl5
https://metacpan.org/release/Text-Xslate
Other
121 stars 47 forks source link

Fix test for DragonflyBSD #153

Closed syohex closed 8 years ago

syohex commented 8 years ago

mtime of file is not updated after closing file on DragonflyBSD file system, such as UFS. This causes test failure. It seems mtime is update after fflush and fsync.

Test are failed on many Dragonfly BSD environment.

gfx commented 8 years ago

Looks good. Use $fh->flush(); $fh->sync(); instead of redundant function syntax.

syohex commented 8 years ago

Thanks for reviewing. I'll fix later.

syohex commented 8 years ago

Updated