Fix test of autom4te from stdin.

* tests/tools.at (autom4te cache locking): Make stdin request
explicit, so that --force is properly used.

Signed-off-by: Eric Blake <ebb9@byu.net>
This commit is contained in:
Eric Blake 2009-07-22 06:50:14 -06:00
parent 497a186732
commit 25853e5836
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2009-07-22 Eric Blake <ebb9@byu.net>
Fix test of autom4te from stdin.
* tests/tools.at (autom4te cache locking): Make stdin request
explicit, so that --force is properly used.
2009-07-16 Eric Blake <ebb9@byu.net>
Don't hide leading space in autom4te --trace output.

View File

@ -1034,8 +1034,8 @@ AT_SETUP([autom4te cache locking])
# Cannot use AT_CHECK here, autotest internals could be messed up.
(echo AC_INIT; sleep 2; echo) \
| (autom4te --language=autoconf -o configure; echo $? >&2 ) 2>errlog &
AT_CHECK([echo AC_INIT | autom4te --language=autoconf -o configure])
| (autom4te --language=autoconf -o configure -; echo $? >&2 ) 2>errlog &
AT_CHECK([echo AC_INIT | autom4te --language=autoconf -o configure -])
wait
# Ignore additional output from shell verbose or xtrace mode.