1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #! /bin/sh
- . test-init.sh
- . tap-setup.sh
- cat > all.test <<END
- ok 1
- 1..0
- 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 '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
- cat > all.test <<END
- ok 1
- ok 2
- not ok 3
- 1..0
- END
- run_make -O -e FAIL check
- count_test_results total=4 pass=1 fail=0 xpass=0 xfail=1 skip=1 error=1
- grep '^ERROR: all\.test - too many tests run (expected 0, got 3)$' stdout
- cat > all.test <<END
- 1..0
- ok 1
- END
- run_make -O -e FAIL check
- count_test_results total=3 pass=0 fail=0 xpass=0 xfail=0 skip=1 error=2
- grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
- grep '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
- cat > all.test <<END
- 1..0
- ok 1
- ok 2
- not ok 3
- not ok 4
- END
- run_make -O -e FAIL check
- count_test_results total=6 pass=0 fail=0 xpass=0 xfail=0 skip=1 error=5
- grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
- grep '^ERROR: all\.test 2 # UNPLANNED$' stdout
- grep '^ERROR: all\.test 3 # UNPLANNED$' stdout
- grep '^ERROR: all\.test 4 # UNPLANNED$' stdout
- grep '^ERROR: all\.test - too many tests run (expected 0, got 4)$' stdout
- :
|