]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Add y2000 test.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Nov 2005 23:42:57 +0000 (23:42 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Nov 2005 23:42:57 +0000 (23:42 +0000)
tests/touch/obsolescent

index d6689b34fd88d7e173b70401d56cf581a11971be..98dfdd742a8f77c1505c3ea9912206500fe52b50 100755 (executable)
@@ -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