From 25853e5836109cf5a5113372ed578a0bb2950886 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Wed, 22 Jul 2009 06:50:14 -0600 Subject: [PATCH] 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 --- ChangeLog | 6 ++++++ tests/tools.at | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e1a64947..4b9fb5c9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-07-22 Eric Blake + + 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 Don't hide leading space in autom4te --trace output. diff --git a/tests/tools.at b/tests/tools.at index 542e668a..529eb93d 100644 --- a/tests/tools.at +++ b/tests/tools.at @@ -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.