summaryrefslogtreecommitdiff
path: root/tests/cond5.test
blob: 84afdd01db1117709d313329a17c98516e8b7e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#! /bin/sh
# Copyright (C) 1998, 1999, 2001, 2002, 2010 Free Software Foundation,
# Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# Yet another sources-in-conditional test.  Report from Tim Goodwin.

. ./defs || Exit 1

set -e

cat >> configure.in << 'END'
AC_PROG_CC
AM_CONDITIONAL([ONE], [true])
AM_CONDITIONAL([TWO], [false])
AC_OUTPUT
END

cat > Makefile.am << 'END'
bin_PROGRAMS = targ

if ONE
OPT_SRC = one.c
endif

if TWO
OPT_SRC = $(OPT_SRC) two.c
endif

targ_SOURCES = main.c $(OPT_SRC)
END

# The bug is that automake hangs.  So we give it an appropriate grace
# time, then kill it if necessary.
$ACLOCAL
$AUTOMAKE 2>stderr &
pid=$!

# Make at most 30 tries, one every 10 seconds (= 300 seconds = 5 min).
try=1
while test $try -le 30; do
  if kill -0 $pid; then
    : process $pid is still alive, wait and retry
    sleep 10
    try=`expr $try + 1`
  else
    cat stderr >&2
    # Automake must fail with a proper error message.
    grep 'variable.*OPT_SRC.*recursively defined' stderr
    Exit 0
  fi
done
# The automake process probably hung.  Kill it, and exit with failure.
echo "$me: automake process $pid hung"
kill $pid
Exit 1