1234567891011121314151617181920212223242526272829303132333435 |
- #! /bin/sh
- . test-init.sh
- . tap-setup.sh
- echo 'Bail out! 0' > a.test
- echo 'Bail out! 0.0' > b.test
- run_make -O -e FAIL TESTS='a.test b.test' check
- count_test_results total=2 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=2
- grep '^ERROR: a.test - Bail out! 0$' stdout
- grep '^ERROR: b.test - Bail out! 0\.0$' stdout
- :
|