1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

use ERR_SUBST to get around fact that the diagnostic

you get on a system with 32-bit time_t is not the same as
the one you get for a system where it's 64 bits wide:
- date: time 72057594037927935 is out of range
+ date: invalid date `@72057594037927935'
This commit is contained in:
Jim Meyering
2005-08-15 13:03:57 +00:00
parent 4a78a30f89
commit 9d534aa492

View File

@@ -199,7 +199,8 @@ my @Tests =
# 0000003
['uninit-64', '-d @72057594037927935',
{OUT=>''},
{ERR => "date: invalid date `\@72057594037927935'\n"},
{ERR_SUBST => 's/.*//'},
{ERR => "\n"},
{EXIT => 1},
],
);