* tests/actions.at, tests/calc.at, tests/headers.at,

* tests/torture.at: Adjust to the newest Autotest which no longer
forces `.' in the PATH.
This commit is contained in:
Akim Demaille
2002-01-27 10:59:15 +00:00
parent 30f8c3953f
commit 30d2f3d50f
5 changed files with 17 additions and 11 deletions

View File

@@ -285,7 +285,7 @@ m4_define([_AT_CHECK_CALC],
[AT_DATA([[input]],
[[$2
]])
AT_CHECK([calc input], 0, [], [stderr])dnl
AT_CHECK([./calc input], 0, [], [stderr])dnl
AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0,
[m4_bmatch([$1], [--debug],
[$3], [0])
@@ -312,11 +312,11 @@ AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0,
# of expected lines on stderr.
m4_define([_AT_CHECK_CALC_ERROR],
[m4_bmatch([$2], [^/],
[AT_CHECK([calc $2], 0, [], [stderr])],
[AT_CHECK([./calc $2], 0, [], [stderr])],
[AT_DATA([[input]],
[[$2
]])
AT_CHECK([calc input], 0, [], [stderr])])
AT_CHECK([./calc input], 0, [], [stderr])])
AT_CHECK([wc -l <stderr | sed 's/[[^0-9]]//g'], 0,