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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
#! /bin/sh
# Copyright (C) 2011-2021 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 <https://www.gnu.org/licenses/>.
# Check that the developer can extend the site.exp generated by the
# automake-generated Makefile.
required=runtest
. test-init.sh
write_check_for ()
{
echo "send_user \"$1: \$$1\\n\""
unindent << END
if { \$$1 == "/$1/" } {
pass "test_$1"
} else {
fail "test_$1"
}
END
}
cat >> configure.ac << 'END'
AC_CONFIG_FILES([testsuite/Makefile])
AC_OUTPUT
END
cat > Makefile.am << 'END'
SUBDIRS = testsuite
END
mkdir testsuite
cat > testsuite/Makefile.am << 'END'
AUTOMAKE_OPTIONS = dejagnu
DEJATOOL = tool
EXTRA_DIST = tool.test/tool.exp
EXTRA_DEJAGNU_SITE_CONFIG = foo.exp
EXTRA_DIST += foo.exp
END
echo 'set foo "/foo/"' > testsuite/foo.exp
mkdir testsuite/tool.test
write_check_for foo > testsuite/tool.test/tool.exp
cat testsuite/tool.test/tool.exp
$ACLOCAL
$AUTOCONF
$AUTOMAKE --add-missing
./configure
$MAKE check
cat testsuite/foo.exp
cat testsuite/site.exp
grep 'PASS: test_foo' testsuite/tool.sum
write_check_for bar >> testsuite/tool.test/tool.exp
write_check_for baz >> testsuite/tool.test/tool.exp
cat testsuite/tool.test/tool.exp
# Ensure that foo.exp will be newer than site.exp, which will
# thus have to be remade.
$sleep
# With this, below we'll also check that settings in files coming later in
# $(EXTRA_DEJAGNU_SITE_CONFIG) override those in files coming earlier.
cat >> testsuite/foo.exp <<'END'
set bar "/foo/"
set baz "/foo/"
set qux "/foo/"
END
$MAKE check && { cat testsuite/site.exp; exit 1; }
grep 'PASS: test_foo' testsuite/tool.sum
grep 'FAIL: test_bar' testsuite/tool.sum
grep 'FAIL: test_baz' testsuite/tool.sum
cat >> testsuite/Makefile.am << 'END'
EXTRA_DEJAGNU_SITE_CONFIG += bar bar.dir/bar
EXTRA_DIST += bar
DISTCLEANFILES = bar.dir/bar
bar.dir/bar:
test -d bar.dir || mkdir bar.dir
echo 'set baz "/baz/"' > $@
END
echo 'set bar "/bar/"' > testsuite/bar
# This will allow us to check one more time that settings in files
# coming later in $(EXTRA_DEJAGNU_SITE_CONFIG) override those in
# files coming earlier.
echo 'set baz "/xyz/"' >> testsuite/bar
# Ensure that the Makefile will be newer than site.exp, which will
# thus have to be remade.
$sleep
$AUTOMAKE testsuite/Makefile
./config.status testsuite/Makefile
$MAKE check || { cat testsuite/site.exp; exit 1; }
cat testsuite/site.exp
cat testsuite/bar.dir/bar
$FGREP '/bar/' testsuite/site.exp
$FGREP '/baz/' testsuite/site.exp
grep 'PASS: test_foo' testsuite/tool.sum
grep 'PASS: test_bar' testsuite/tool.sum
grep 'PASS: test_baz' testsuite/tool.sum
# Check that the features we're testing behave well in VPATH builds.
$MAKE distcheck
# Check that the user can edit the site.exp file, and that his edits
# are retained.
write_check_for zardoz >> testsuite/tool.test/tool.exp
cat testsuite/tool.test/tool.exp
echo 'set zardoz "/zardoz/"' >> testsuite/site.exp
$MAKE check
cat testsuite/site.exp
grep 'PASS: test_zardoz' testsuite/tool.sum
cat >> testsuite/Makefile.am << 'END'
EXTRA_DEJAGNU_SITE_CONFIG += quux.exp
quux.exp:
echo 'set zardoz "/quux/"' > $@
END
# Ensure that the Makefile will be newer than on site.exp, which will
# thus have to be remade.
$sleep
$AUTOMAKE testsuite/Makefile
./config.status testsuite/Makefile
grep 'zardoz.*/quux/' testsuite/Makefile
(cd testsuite/ && $MAKE site.exp)
cat testsuite/site.exp
cat testsuite/quux.exp
grep 'zardoz.*/quux/' testsuite/site.exp
$MAKE check
grep 'PASS: test_zardoz' testsuite/tool.sum
grep 'zardoz: /zardoz/' testsuite/tool.log
grep 'zardoz.*quux' testsuite/tool.log && exit 1
# Check that files in $(EXTRA_DEJAGNU_SITE_CONFIG) are not distributed
# by default.
$MAKE distdir
ls -l $distdir
test ! -e $distdir/testsuite/bar.dir/bar
test ! -e $distdir/testsuite/quux.exp
:
|