mirror of
git://git.sv.gnu.org/autoconf
synced 2024-12-03 02:00:36 +08:00
Factor the epilogue of the tests.
* tests/atgeneral.m4 (AT_CLEANUP): Move the reading of at_status into... (AT_INIT): here, at the end of the `case'.
This commit is contained in:
parent
bca7b71cf8
commit
ae13937d34
@ -1,3 +1,11 @@
|
|||||||
|
2000-11-23 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
Factor the epilogue of the tests.
|
||||||
|
|
||||||
|
* tests/atgeneral.m4 (AT_CLEANUP): Move the reading of at_status
|
||||||
|
into...
|
||||||
|
(AT_INIT): here, at the end of the `case'.
|
||||||
|
|
||||||
2000-11-23 Akim Demaille <akim@epita.fr>
|
2000-11-23 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
The debug scripts are only wrapper around testsuite, asking for a
|
The debug scripts are only wrapper around testsuite, asking for a
|
||||||
|
@ -162,10 +162,23 @@ m4_divert_push(1)dnl
|
|||||||
: ${tests="$TESTS"}
|
: ${tests="$TESTS"}
|
||||||
for test in $tests
|
for test in $tests
|
||||||
do
|
do
|
||||||
|
at_status=0;
|
||||||
case $test in
|
case $test in
|
||||||
m4_divert_pop[]dnl
|
m4_divert_pop[]dnl
|
||||||
m4_divert_push(3)[]dnl
|
m4_divert_push(3)[]dnl
|
||||||
esac
|
esac
|
||||||
|
$at_verbose &&
|
||||||
|
echo $at_n " AT_ordinal. $srcdir/`cat at-setup-line`: $at_c"
|
||||||
|
case $at_status in
|
||||||
|
0) echo ok
|
||||||
|
;;
|
||||||
|
77) echo "ignored near \``cat at-check-line`'"
|
||||||
|
at_ignore_count=`expr $at_ignore_count + 1`
|
||||||
|
;;
|
||||||
|
*) echo "FAILED near \``cat at-check-line`'"
|
||||||
|
at_failed_list="$at_failed_list $test"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# Wrap up the testing suite with summary statistics.
|
# Wrap up the testing suite with summary statistics.
|
||||||
@ -284,21 +297,9 @@ $at_traceoff
|
|||||||
[[#] Snippet )s[]AT_ordinal[])
|
[[#] Snippet )s[]AT_ordinal[])
|
||||||
)
|
)
|
||||||
at_status=$?
|
at_status=$?
|
||||||
$at_verbose &&
|
|
||||||
echo $at_n " AT_ordinal. $srcdir/`cat at-setup-line`: $at_c"
|
|
||||||
case $at_status in
|
|
||||||
0) echo ok
|
|
||||||
;;
|
|
||||||
77) echo "ignored near \``cat at-check-line`'"
|
|
||||||
at_ignore_count=`expr $at_ignore_count + 1`
|
|
||||||
;;
|
|
||||||
*) echo "FAILED near \``cat at-check-line`'"
|
|
||||||
at_failed_list="$at_failed_list AT_ordinal"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
else
|
else
|
||||||
echo 'ignored (skipped)'
|
echo 'ignored (skipped)'
|
||||||
at_ignore_count=`expr $at_ignore_count + 1`
|
at_ignore_count=`expr $at_ignore_count + 1`
|
||||||
fi
|
fi
|
||||||
at_test_count=`expr 1 + $at_test_count`
|
at_test_count=`expr 1 + $at_test_count`
|
||||||
if $at_stop_on_error && test -n "$at_failed_list"; then :; else
|
if $at_stop_on_error && test -n "$at_failed_list"; then :; else
|
||||||
|
@ -162,10 +162,23 @@ m4_divert_push(1)dnl
|
|||||||
: ${tests="$TESTS"}
|
: ${tests="$TESTS"}
|
||||||
for test in $tests
|
for test in $tests
|
||||||
do
|
do
|
||||||
|
at_status=0;
|
||||||
case $test in
|
case $test in
|
||||||
m4_divert_pop[]dnl
|
m4_divert_pop[]dnl
|
||||||
m4_divert_push(3)[]dnl
|
m4_divert_push(3)[]dnl
|
||||||
esac
|
esac
|
||||||
|
$at_verbose &&
|
||||||
|
echo $at_n " AT_ordinal. $srcdir/`cat at-setup-line`: $at_c"
|
||||||
|
case $at_status in
|
||||||
|
0) echo ok
|
||||||
|
;;
|
||||||
|
77) echo "ignored near \``cat at-check-line`'"
|
||||||
|
at_ignore_count=`expr $at_ignore_count + 1`
|
||||||
|
;;
|
||||||
|
*) echo "FAILED near \``cat at-check-line`'"
|
||||||
|
at_failed_list="$at_failed_list $test"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# Wrap up the testing suite with summary statistics.
|
# Wrap up the testing suite with summary statistics.
|
||||||
@ -284,21 +297,9 @@ $at_traceoff
|
|||||||
[[#] Snippet )s[]AT_ordinal[])
|
[[#] Snippet )s[]AT_ordinal[])
|
||||||
)
|
)
|
||||||
at_status=$?
|
at_status=$?
|
||||||
$at_verbose &&
|
|
||||||
echo $at_n " AT_ordinal. $srcdir/`cat at-setup-line`: $at_c"
|
|
||||||
case $at_status in
|
|
||||||
0) echo ok
|
|
||||||
;;
|
|
||||||
77) echo "ignored near \``cat at-check-line`'"
|
|
||||||
at_ignore_count=`expr $at_ignore_count + 1`
|
|
||||||
;;
|
|
||||||
*) echo "FAILED near \``cat at-check-line`'"
|
|
||||||
at_failed_list="$at_failed_list AT_ordinal"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
else
|
else
|
||||||
echo 'ignored (skipped)'
|
echo 'ignored (skipped)'
|
||||||
at_ignore_count=`expr $at_ignore_count + 1`
|
at_ignore_count=`expr $at_ignore_count + 1`
|
||||||
fi
|
fi
|
||||||
at_test_count=`expr 1 + $at_test_count`
|
at_test_count=`expr 1 + $at_test_count`
|
||||||
if $at_stop_on_error && test -n "$at_failed_list"; then :; else
|
if $at_stop_on_error && test -n "$at_failed_list"; then :; else
|
||||||
|
Loading…
Reference in New Issue
Block a user