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 # - a "plan with skip" given after one or more test result have already
19 # been seen is an error
20 # - any test result following a "plan with skip" is an error.
30 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
32 count_test_results total
=2 pass
=1 fail
=0 xpass
=0 xfail
=0 skip
=0 error
=1
33 grep '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
41 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
43 count_test_results total
=4 pass
=1 fail
=0 xpass
=0 xfail
=1 skip
=1 error
=1
44 grep '^ERROR: all\.test - too many tests run (expected 0, got 3)$' stdout
47 1..0 # SKIP falsified later
50 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
52 count_test_results total
=3 pass
=0 fail
=0 xpass
=0 xfail
=0 skip
=1 error
=2
53 grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
54 grep '^ERROR: all\.test - too many tests run (expected 0, got 1)$' stdout
57 1..0 # SKIP falsified later
63 $MAKE check
>stdout
&& { cat stdout
; exit 1; }
65 count_test_results total
=6 pass
=0 fail
=0 xpass
=0 xfail
=0 skip
=1 error
=5
66 grep '^ERROR: all\.test 1 # UNPLANNED$' stdout
67 grep '^ERROR: all\.test 2 # UNPLANNED$' stdout
68 grep '^ERROR: all\.test 3 # UNPLANNED$' stdout
69 grep '^ERROR: all\.test 4 # UNPLANNED$' stdout
70 grep '^ERROR: all\.test - too many tests run (expected 0, got 4)$' stdout