Hello James, On FreeBSD/x86 6.1, on a NFS mount, the test-stat-time test fails:
$ gdb test-stat-time ... (gdb) run Program received signal SIGABRT, Aborted. 0x28127363 in kill () from /lib/libc.so.6 (gdb) where #0 0x28127363 in kill () from /lib/libc.so.6 #1 0x28127300 in raise () from /lib/libc.so.6 #2 0x28126014 in abort () from /lib/libc.so.6 #3 0x08048a44 in test_birthtime (statinfo=0xbfbfeb40, modtimes=0xbfbfeb20, birthtimes=0xbfbfeb00) at test-stat-time.c:143 #4 0x08048b43 in main () at test-stat-time.c:170 (gdb) up 3 #3 0x08048a44 in test_birthtime (statinfo=0xbfbfeb40, modtimes=0xbfbfeb20, birthtimes=0xbfbfeb00) at test-stat-time.c:143 143 ASSERT (modtimes[0].tv_sec < birthtimes[1].tv_sec); /* mtime(stamp1) < birthtime(renamed) */ (gdb) print modtimes[0] $3 = {tv_sec = 1175565336, tv_nsec = 0} (gdb) print modtimes[1] $4 = {tv_sec = 1175565338, tv_nsec = 0} (gdb) print modtimes[2] $5 = {tv_sec = 1175565340, tv_nsec = 0} (gdb) print modtimes[3] $6 = {tv_sec = 1175565344, tv_nsec = 0} (gdb) print birthtimes[0] $7 = {tv_sec = 0, tv_nsec = 0} (gdb) print birthtimes[1] $8 = {tv_sec = 0, tv_nsec = 0} (gdb) print birthtimes[2] $9 = {tv_sec = 0, tv_nsec = 0} (gdb) print birthtimes[3] $10 = {tv_sec = 0, tv_nsec = 0} Bruno