diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-15 13:03:57 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-15 13:03:57 +0000 |
commit | 9d534aa492a0b4760bd5dd61d02c6ddac19f450a (patch) | |
tree | 67f685bf429028f8ab9cdbcf78be9848d07c16fc /tests/misc/date | |
parent | 4a78a30f89f076194581ab190d159a451cfe80b4 (diff) | |
download | coreutils-9d534aa492a0b4760bd5dd61d02c6ddac19f450a.tar.xz |
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'
Diffstat (limited to 'tests/misc/date')
-rwxr-xr-x | tests/misc/date | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/misc/date b/tests/misc/date index 1f7bb58df..17b6c48d0 100755 --- a/tests/misc/date +++ b/tests/misc/date @@ -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}, ], ); |