12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #! /bin/sh
- . test-init.sh
- . tap-setup.sh
- cat > a.test <<END
- 1..1
- ok 0
- END
- cat > b.test <<END
- 1..1
- not ok 0
- END
- cat > c.test <<END
- 1..1
- ok 0 foo
- END
- cat > d.test <<END
- 1..1
- not ok 0 bar
- END
- cat > e.test <<END
- 1..1
- ok 0
- END
- run_make -O -e FAIL TESTS='a.test b.test c.test d.test e.test' check
- count_test_results total=5 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=5
- grep '^ERROR: a\.test 0 # OUT-OF-ORDER (expecting 1)$' stdout
- grep '^ERROR: b\.test 0 # OUT-OF-ORDER (expecting 1)$' stdout
- grep '^ERROR: c\.test 0 foo # OUT-OF-ORDER (expecting 1)$' stdout
- grep '^ERROR: d\.test 0 bar # OUT-OF-ORDER (expecting 1)$' stdout
- grep '^ERROR: e\.test 0 # OUT-OF-ORDER (expecting 1)$' stdout
- :
|