diff --git a/ChangeLog b/ChangeLog index ff69875ccb..c5d97bf3ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Apr 11 23:33:22 2015 Tanaka Akira + + * file.c (rb_f_test): Consider nsec for "=", "<" and ">" for "test" + method. + Sat Apr 11 23:26:05 2015 SHIBATA Hiroshi * tool/rbinstall.rb: support destdir for native extention gem. diff --git a/file.c b/file.c index 00ef6e90d0..c724a4b97c 100644 --- a/file.c +++ b/file.c @@ -4829,22 +4829,28 @@ rb_f_test(int argc, VALUE *argv) if (strchr("=<>", cmd)) { struct stat st1, st2; + struct timespec t1, t2; CHECK(2); if (rb_stat(argv[1], &st1) < 0) return Qfalse; if (rb_stat(argv[2], &st2) < 0) return Qfalse; + t1 = stat_mtimespec(&st1); + t2 = stat_mtimespec(&st2); + switch (cmd) { case '=': - if (st1.st_mtime == st2.st_mtime) return Qtrue; + if (t1.tv_sec == t2.tv_sec && t1.tv_nsec == t2.tv_nsec) return Qtrue; return Qfalse; case '>': - if (st1.st_mtime > st2.st_mtime) return Qtrue; + if (t1.tv_sec > t2.tv_sec) return Qtrue; + if (t1.tv_sec == t2.tv_sec && t1.tv_nsec > t2.tv_nsec) return Qtrue; return Qfalse; case '<': - if (st1.st_mtime < st2.st_mtime) return Qtrue; + if (t1.tv_sec < t2.tv_sec) return Qtrue; + if (t1.tv_sec == t2.tv_sec && t1.tv_nsec < t2.tv_nsec) return Qtrue; return Qfalse; } }