1 | #! /bin/sh |
---|
2 | # $Id: yat_msg_error_test2.sh 2495 2011-06-02 18:06:55Z peter $ |
---|
3 | # |
---|
4 | # Copyright (C) 2011 Peter Johansson |
---|
5 | # |
---|
6 | # This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
7 | # |
---|
8 | # The yat library is free software; you can redistribute it |
---|
9 | # and/or modify it under the terms of the GNU General Public License as |
---|
10 | # published by the Free Software Foundation; either version 3 of the |
---|
11 | # License, or (at your option) any later version. |
---|
12 | # |
---|
13 | # The yat library is distributed in the hope that it will be useful, |
---|
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | # General Public License for more details. |
---|
17 | # |
---|
18 | # You should have received a copy of the GNU General Public License |
---|
19 | # along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | |
---|
21 | |
---|
22 | # test that YAT_MSG_ERROR does not make configure abort when placed |
---|
23 | # within an inactive if statement |
---|
24 | |
---|
25 | required="autoconf" |
---|
26 | |
---|
27 | set -e |
---|
28 | |
---|
29 | . ./common_defs.sh || exit 1 |
---|
30 | |
---|
31 | # don't use default configure.ac because it checks for compiler etc |
---|
32 | # which is not needed here |
---|
33 | cat > configure.ac <<EOF |
---|
34 | AC_INIT([hello],[1.0]) |
---|
35 | AC_CONFIG_SRCDIR([hello.cc]) |
---|
36 | AC_CONFIG_MACRO_DIR([m4]) |
---|
37 | AS_IF([test x = x], [], [YAT_MSG_ERROR([some message])]) |
---|
38 | AC_CONFIG_FILES([Makefile]) |
---|
39 | AC_OUTPUT |
---|
40 | EOF |
---|
41 | |
---|
42 | echo "@configure_input@" > Makefile.in |
---|
43 | |
---|
44 | bootstrap |
---|
45 | rm -f config.status |
---|
46 | exitcode=0 |
---|
47 | ./configure > stdout 2> stderr || exitcode=$? |
---|
48 | cat stdout |
---|
49 | cat stderr >&2 |
---|
50 | test $exitcode = 0 || exit 1 |
---|
51 | |
---|
52 | echo "Test is OK" |
---|