123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #! /bin/sh
- . test-init.sh
- . tap-setup.sh
- x1=5 x2=7 x3=45 x4=11 x5=7 x6=3 x7=6 x8=9 x9=1000 x10=1
- cat > all.test <<END
- 1..10
- ok 1 ${x1}
- ok - ${x2}
- not ok 3 ${x3}
- not ok - ${x4}
- ok 5 ${x5}
- ok - ${x6}
- not ok 7 ${x7}
- not ok - ${x8}
- ok 9 ${x9}
- ok - ${x10}
- END
- cat > exp <<END
- PASS: all.test 1 ${x1}
- PASS: all.test 2 - ${x2}
- FAIL: all.test 3 ${x3}
- FAIL: all.test 4 - ${x4}
- SKIP: all.test 5 ${x5}
- SKIP: all.test 6 - ${x6}
- XFAIL: all.test 7 ${x7}
- XFAIL: all.test 8 - ${x8}
- XPASS: all.test 9 ${x9}
- XPASS: all.test 10 - ${x10}
- END
- run_make -O -e FAIL check
- count_test_results total=10 pass=2 fail=2 xpass=2 xfail=2 skip=2 error=0
- $FGREP ': all.test' stdout > got
- cat exp
- cat got
- diff exp got
- :
|