* tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):

Remove stdin redirection from /dev/null to allow pipe to work.
This commit is contained in:
Ralf Wildenhues 2006-03-08 20:48:22 +00:00
parent 70e18e4ea9
commit f1fb11eb87
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-03-08 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
Remove stdin redirection from /dev/null to allow pipe to work.
2006-03-08 Paul Eggert <eggert@cs.ucla.edu>
* tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):

View File

@ -141,7 +141,7 @@ AT_CLEANUP
AT_SETUP([AC_PROG_CPP without warnings])
# Ignore if /lib/cpp doesn't work
AT_CHECK([echo '#include <stdio.h>' | /lib/cpp </dev/null || exit 77],
AT_CHECK([echo '#include <stdio.h>' | /lib/cpp || exit 77],
[], [ignore], [ignore])
# A cpp which exit status is meaningless.
@ -179,7 +179,7 @@ AT_CLEANUP
AT_SETUP([AC_PROG_CPP via CC])
# Ignore if /lib/cpp doesn't work
AT_CHECK([echo '#include <stdio.h>' | /lib/cpp </dev/null || exit 77],
AT_CHECK([echo '#include <stdio.h>' | /lib/cpp || exit 77],
[], [ignore], [ignore])
AT_DATA([mycc],