1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #! /bin/sh
- . test-init.sh
- cat >> configure.ac << 'END'
- AC_OUTPUT
- END
- cat > Makefile.am << 'END'
- TESTS = ok.test zardoz.test
- TEST_LOG_COMPILER = true
- END
- : > ok.test
- $ACLOCAL
- $AUTOCONF
- $AUTOMAKE -a
- ./configure
- run_make -e FAIL -M check
- test -f ok.log
- grep '^PASS: ok\.test' output
- $FGREP 'zardoz.log' output
- test ! -e test-suite.log
- run_make -M -e FAIL TESTS='zardoz2.test' check
- $FGREP 'zardoz2.log' output
- test ! -e test-suite.log
- run_make -M -e FAIL TEST_LOGS='zardoz3.log' check
- $FGREP 'zardoz3.log' output
- test ! -e test-suite.log
- : > zardoz.test
- $MAKE check
- rm -f zardoz.test
- run_make -M -e FAIL check
- $FGREP 'zardoz.log' output
- test ! -e test-suite.log
- :
|