maint: Update HACKING
[automake.git] / t / test-driver-create-log-dir.sh
blobaedebd580d965b9cfe2044722632574d249d68f9
1 #! /bin/sh
2 # Copyright (C) 2011-2017 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)
7 # any later version.
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 <https://www.gnu.org/licenses/>.
17 # Custom test drivers: if a log file has a directory component (as in
18 # e.g., 'sub/foo.log'), the Automake test harness must ensure that
19 # directory exists before calling any custom test driver.
21 . test-init.sh
23 cat >> configure.ac << 'END'
24 AC_OUTPUT
25 END
27 cat > Makefile.am << 'END'
28 # The extra '.' components below are meant.
29 TESTS = sub/foo sub/subsub/bar.test ././sub1/./baz
30 $(TESTS):
31 LOG_DRIVER = $(srcdir)/checkdir-driver
32 TEST_LOG_DRIVER = $(LOG_DRIVER)
33 EXTRA_DIST = checkdir-driver
35 check-local: $(TEST_SUITE_LOG)
36 test -d sub
37 test -d sub1
38 test -d sub/subsub
39 test -f sub/foo.log
40 test -f sub/subsub/bar.log
41 test -f sub1/baz.log
42 test -f sub/foo.trs
43 test -f sub/subsub/bar.trs
44 test -f sub1/baz.trs
45 END
47 echo "#!$AM_TEST_RUNNER_SHELL" > checkdir-driver
48 cat >> checkdir-driver <<'END'
49 set -e; set -u
50 while test $# -gt 0; do
51 case $1 in
52 --log-file) log_file=$2; shift;;
53 --trs-file) trs_file=$2; shift;;
54 --test-name|--expect-failure|--color-tests|--enable-hard-errors) shift;;
55 --) shift; break;;
56 *) echo "$0: invalid option/argument: '$1'" >&2; exit 2;;
57 esac
58 shift
59 done
60 echo "log: $log_file" # For debugging.
61 echo "trs: $trs_file" # Ditto.
62 case $log_file in */*);; *) exit 1;; esac
63 dir_log=${log_file%/*}
64 dir_trs=${trs_file%/*}
65 echo "dir_log: $dir_log" # For debugging.
66 echo "dir_trs: $dir_trs" # Likewise.
67 test x"$dir_trs" = x"$dir_log" || exit 1
68 test -d "$dir_log" || exit 1
69 echo dummy1 > "$log_file"
70 echo dummy2 > "$trs_file"
71 END
72 chmod a+x checkdir-driver
74 $ACLOCAL
75 $AUTOCONF
76 $AUTOMAKE
78 ./configure
79 $MAKE check
80 $MAKE distcheck