From: Paul Eggert Date: Tue, 1 Nov 2005 23:42:57 +0000 (+0000) Subject: Add y2000 test. X-Git-Tag: v6.0~1429 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=473a0d6209aff2dc3108919963ddd778614f706d;p=thirdparty%2Fcoreutils.git Add y2000 test. --- diff --git a/tests/touch/obsolescent b/tests/touch/obsolescent index d6689b34fd..98dfdd742a 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