2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # - how does TAP result numbers with leading zero fares?
23 . "$am_testauxdir"/tap-setup.sh || fatal_ "sourcing tap-setup.sh"
27 $MAKE check >stdout && { cat stdout; Exit 1; }
29 count_test_results "$@"
30 # Allow some normalization of leading zeros, without forcing it.
31 LC_ALL=C sed -n 's/: all\.test 0*\([0-9]\)/: all.test \1/p' stdout > got
67 SKIP: all.test 5 # SKIP
68 SKIP: all.test 6 # SKIP
69 XFAIL: all.test 7 # TODO
70 XFAIL: all.test 8 # TODO
75 SKIP: all.test 13 # SKIP
76 XFAIL: all.test 14 # TODO
77 XPASS: all.test 15 # TODO
80 do_checks total=15 pass=5 fail=3 xpass=1 xfail=3 skip=3 error=0
97 ERROR: all.test 10 # OUT-OF-ORDER (expecting 1)
98 ERROR: all.test 3 # OUT-OF-ORDER (expecting 2)
99 ERROR: all.test 1 # OUT-OF-ORDER (expecting 3)
100 ERROR: all.test 10 # OUT-OF-ORDER (expecting 4)
101 ERROR: all.test 100 # OUT-OF-ORDER (expecting 5)
107 do_checks total=8 pass=3 fail=0 xpass=0 xfail=0 skip=0 error=5