summaryrefslogtreecommitdiff
path: root/tests/tagtrace.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tagtrace.test')
-rwxr-xr-xtests/tagtrace.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tagtrace.test b/tests/tagtrace.test
index 9b737e88..32d708dc 100755
--- a/tests/tagtrace.test
+++ b/tests/tagtrace.test
@@ -35,10 +35,10 @@ fi
( cd "$abs_srcdir" && $AUTOCONF --trace 'LT_SUPPORTED_TAG:$1' ) >/dev/null
ret=$?
-if test "$ret" -eq 63 || test "$ret" -eq 1; then
+if test 63 -eq $ret || test 1 -eq $ret; then
func_error "This test requires the same Autoconf version"
func_skip "as the one that was used to bootstrap Libtool"
-elif test "$ret" -ne 0; then
+elif test 0 -ne $ret; then
func_fatal_error "\`$AUTOCONF --trace' exited $ret"
fi