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/>.
17 # Custom test drivers: what happens when a test driver fails? Well,
18 # "make check" should at least fail too, and the test-suite.log
19 # shouldn't be created. Unfortunately, we cannot truly control also
20 # the (non-)creation of individual test logs, since those are expected
21 # to be created by the drivers themselves, and an ill-behaved driver
22 # (like our dummy one in this test) might leave around a test log even
23 # in case of internal failures.
27 cat >> configure.ac <<'END'
31 cat > Makefile.am <<'END'
32 TEST_LOG_DRIVER = ./oops
36 cat > foo.test <<'END'
47 # The testsuite driver does not exist.
49 test ! -f test-suite.log
51 # The testsuite driver exists and create the test log files, but fails.
56 echo 'Oops, I fail!' >&2
62 test ! -f test-suite.log