diff options
-rwxr-xr-x | tests/touch/obsolescent | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/touch/obsolescent b/tests/touch/obsolescent index d6689b34f..98dfdd742 100755 --- a/tests/touch/obsolescent +++ b/tests/touch/obsolescent @@ -36,4 +36,8 @@ for ones in 11111111 1111111111; do done done +y2000=0101000000 +rm -f $y2000 file || fail=1 +touch $y2000 file && test -f $y2000 && test -f file || fail=1 + (exit $fail); exit $fail |