123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #! /bin/sh
- . test-init.sh
- . tap-setup.sh
- cat > foo.test <<END
- some non-TAP text, will be copied in the global log
- 1..0
- END
- cat > bar.test <<END
- 1..0
- END
- run_make -O TESTS='foo.test bar.test' check
- grep '^SKIP: foo\.test .* from the last line$' stdout
- grep '^SKIP: bar\.test$' stdout
- test $(grep -c ': .*\.test' stdout) -eq 2
- count_test_results total=2 pass=0 fail=0 xpass=0 xfail=0 skip=2 error=0
- :
|