diff options
Diffstat (limited to 'tests/stat/test_stat.c')
-rw-r--r-- | tests/stat/test_stat.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/stat/test_stat.c b/tests/stat/test_stat.c index 2c2bf53d..f59fb3c3 100644 --- a/tests/stat/test_stat.c +++ b/tests/stat/test_stat.c @@ -104,13 +104,10 @@ void test() { assert(s.st_ino); assert(S_ISCHR(s.st_mode)); assert(s.st_nlink); -#if !USE_OLD_FS - // old FS doesn't store proper device ids #ifndef __APPLE__ // mac uses makedev(3, 2) for /dev/null assert(s.st_rdev == makedev(1, 3)); #endif -#endif assert(!s.st_size); assert(s.st_atime); assert(s.st_mtime); |