summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2020-11-15 21:14:24 -0800
committerJim Meyering <meyering@fb.com>2020-11-15 21:17:29 -0800
commit17e6f26a581b94254206a1ce6e3de10e5fed0dc8 (patch)
tree02fb803ca7d7d7f5d255b80987276ebdcac1cd72
parent26ef6e7f3cfc603fe8e303d3cfa202a1334415c4 (diff)
downloadautomake-17e6f26a581b94254206a1ce6e3de10e5fed0dc8.tar.gz
tests: avoid missing .dvi failure with parallel tests
* t/txinfo-no-clutter.sh: Tests of texinfo-related rules had overlap that made them fail often when some rules were run in parallel, so inhibit parallelism in that one directory. See discussion starting at https://lists.gnu.org/r/automake-patches/2020-11/msg00011.html
-rw-r--r--t/txinfo-no-clutter.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/txinfo-no-clutter.sh b/t/txinfo-no-clutter.sh
index b311f0348..6940aa945 100644
--- a/t/txinfo-no-clutter.sh
+++ b/t/txinfo-no-clutter.sh
@@ -29,6 +29,10 @@ cat > Makefile.am << 'END'
all-local: ps pdf dvi html # For "make distcheck".
info_TEXINFOS = foo.texi doc/bar.texi baz.texi
SUBDIRS = sub
+
+# Tell GNU make not to parallelize these, because they
+# have overlap between explicit and intermediate .dvi files.
+.NOTPARALLEL:
END
mkdir sub doc