summaryrefslogtreecommitdiff
path: root/build-aux/test-driver-1.16.3.diff
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2021-08-08 03:52:01 +0200
committerBruno Haible <bruno@clisp.org>2021-08-08 04:00:50 +0200
commit6ccfbd6495f2849b1aeea84f73327f6ced0080a7 (patch)
tree32ae90a692811831ff75891eeb984ccab59a7fd0 /build-aux/test-driver-1.16.3.diff
parentdac3c7e86dfd3d87c5868229aac392d81711d504 (diff)
downloadgnulib-6ccfbd6495f2849b1aeea84f73327f6ced0080a7.tar.gz
gnulib-tool: Add support for Automake 1.16.4.
Reported by <shoober420@gmail.com> in <https://lists.gnu.org/archive/html/bug-libunistring/2021-08/msg00000.html>. * build-aux/test-driver-1.16.3.diff: Renamed from build-aux/test-driver.diff. * build-aux/test-driver.diff: Update to match Automake 1.16.4. * gnulib-tool (func_create_testdir, func_create_megatestdir): Try both .diff files.
Diffstat (limited to 'build-aux/test-driver-1.16.3.diff')
-rw-r--r--build-aux/test-driver-1.16.3.diff14
1 files changed, 14 insertions, 0 deletions
diff --git a/build-aux/test-driver-1.16.3.diff b/build-aux/test-driver-1.16.3.diff
new file mode 100644
index 0000000000..b81e5a1ff8
--- /dev/null
+++ b/build-aux/test-driver-1.16.3.diff
@@ -0,0 +1,14 @@
+--- test-driver.bak 2019-01-23 03:22:06.672283432 +0100
++++ test-driver 2019-01-23 04:23:21.201060757 +0100
+@@ -106,7 +106,10 @@
+ trap "st=143; $do_exit" 15
+
+ # Test script is run here.
+-"$@" >$log_file 2>&1
++case "$1" in
++ *.sh) sh "$@" >$log_file 2>&1 ;;
++ *) "$@" >$log_file 2>&1 ;;
++esac
+ estatus=$?
+
+ if test $enable_hard_errors = no && test $estatus -eq 99; then