From: Stefano Lattarini Date: Mon, 11 Jun 2012 17:46:46 +0000 (+0200) Subject: subdir tests: avoid an use of "make -j4", for portability X-Git-Tag: v1.12.2~83^4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f67c25fec563f03e6f0ac588c8642bd60f32b93;p=thirdparty%2Fautomake.git subdir tests: avoid an use of "make -j4", for portability Otherwise, a spurious failure with Solaris CCS make can be triggered. The coverage is not actually reduced, since the code path is still covered when one runs the testsuite with AM_TESTSUITE_MAKE="make -jN" (as should be done periodically). * t/subdir-distclean.sh : Call simply "make maintainer-check", not "make -j4 maintainer-check". Signed-off-by: Stefano Lattarini --- diff --git a/t/subdir-distclean.sh b/t/subdir-distclean.sh index df8942022..191c01836 100755 --- a/t/subdir-distclean.sh +++ b/t/subdir-distclean.sh @@ -87,7 +87,7 @@ test -f sub1/subsub/Makefile test -f sub1/run touch sub2/oops sub1/subsub/oops -$MAKE -j4 maintainer-clean +$MAKE maintainer-clean test ! -f sub1/run test ! -f sub2/oops test ! -f sub1/subsub/oops