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?
26 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
28 count_test_results
"$@"
29 # Allow some normalization of leading zeros, without forcing it.
30 LC_ALL
=C
sed -n 's/: all\.test 0*\([0-9]\)/: all.test \1/p' stdout
> got
66 SKIP: all.test 5 # SKIP
67 SKIP: all.test 6 # SKIP
68 XFAIL: all.test 7 # TODO
69 XFAIL: all.test 8 # TODO
74 SKIP: all.test 13 # SKIP
75 XFAIL: all.test 14 # TODO
76 XPASS: all.test 15 # TODO
79 do_checks total
=15 pass
=5 fail
=3 xpass
=1 xfail
=3 skip
=3 error
=0
96 ERROR: all.test 10 # OUT-OF-ORDER (expecting 1)
97 ERROR: all.test 3 # OUT-OF-ORDER (expecting 2)
98 ERROR: all.test 1 # OUT-OF-ORDER (expecting 3)
99 ERROR: all.test 10 # OUT-OF-ORDER (expecting 4)
100 ERROR: all.test 100 # OUT-OF-ORDER (expecting 5)
106 do_checks total
=8 pass
=3 fail
=0 xpass
=0 xfail
=0 skip
=0 error
=5