12345678910111213141516171819202122232425262728293031323334353637383940 |
- #! /bin/sh
- . test-init.sh
- . tap-setup.sh
- echo AM_TEST_LOG_DRIVER_FLAGS = --comments >> Makefile
- cat > all.test <<END
- 1..1
- ok 1
- Bail out!
- END
- run_make -O -e FAIL check
- count_test_results total=2 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=1
- grep '# all.test: sanity check' stdout
- grep 'not seen' stdout && exit 1
- :
|