123456789101112131415161718192021222324252627282930313233343536 |
- #! /bin/sh
- . test-init.sh
- . tap-setup.sh
- cat > all.test <<'END'
- 1..4
- not ok
- not ok 2
- not ok - foo
- not ok 4 - bar
- END
- run_make -O -e FAIL check
- count_test_results total=4 pass=0 fail=4 skip=0 xpass=0 xfail=0 error=0
- :
|