diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-18 07:25:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-18 07:25:39 +0000 |
commit | 7a0ebf5a7b283995026e28639cd54a6c3d0497be (patch) | |
tree | 86ba95bb8f1fd77a78be30d861201991ec585be4 /tests | |
parent | 30d8071d60531224360094e75bea9d77225fafcf (diff) | |
download | coreutils-7a0ebf5a7b283995026e28639cd54a6c3d0497be.tar.xz |
Invalid value exits with status 3, not 2.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/expr/basic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/expr/basic b/tests/expr/basic index da978e7d5..b58b78e4c 100755 --- a/tests/expr/basic +++ b/tests/expr/basic @@ -44,7 +44,7 @@ my @Tests = # This erroneously succeeded and output `3' before 2.0.12. ['fail-a', '3 + -', {ERR => "$prog: non-numeric argument\n"}, - {EXIT => 2}], + {EXIT => 3}], ); # Append a newline to end of each expected `OUT' string. |