summaryrefslogtreecommitdiff
path: root/t/tap-more.sh
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-02-21 17:14:29 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-04-13 19:02:31 +0200
commit239336d2dc35bfac52f1f05edcdb229e5700c191 (patch)
tree7c26a9956b6a5df27bd4a841d9bb3ee05204fe32 /t/tap-more.sh
parent20c1d7d7ff68c8351fd8bb953371012168240279 (diff)
downloadautomake-239336d2dc35bfac52f1f05edcdb229e5700c191.tar.gz
[ng] tests: remove stale workarounds for non-GNU make
* t/yacc-depend2.sh: Remove now-irrelevant comment about the fact that this test fails with FreeBSD make. * t/silent8.sh: Remove useless workaround for NetBSD make. * t/tap-signal.tap: Likewise. * t/posixsubst-ldadd.sh: Remove useless workaround for FreeBSD make. * t/posixsubst-libraries.sh: Likewise. * t/posixsubst-ltlibraries.sh: Likewise. * t/posixsubst-sources.sh: Likewise. * t/posixsubst-tests.sh: Likewise. * t/distcheck-outdated-m4.sh: Remove workaround for extra-verbose make implementations (like Solaris make). * t/distcheck-missing-m4.sh: Likewise. * t/tap-color.sh: Likewise. * t/color.test (test_no_color): Likewise. * t/color2.test (test_no_color): Likewise. Remove redundant check that parallel make does nor redirect output to temporary files or named pipes. * t/tap-color.sh: Likewise. * t/tap-doc.sh: Do not post-process make output to strip extra lines printed bu Sun dmake.. * t/tap-doc2.sh: Remove stray comment. * t/yacc-mix-c-cxx.sh: Just assume that "make -jN" can run make in parallel mode. * t/tap-more.sh: Likewise. * t/dist-formats.tap: Likewise. * t/yacc-line.sh: Avoid workaround to cater for the Solaris XPG4 make inability to chain suffix rules. * t/lex-line.sh: Likewise. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/tap-more.sh')
-rwxr-xr-xt/tap-more.sh11
1 files changed, 1 insertions, 10 deletions
diff --git a/t/tap-more.sh b/t/tap-more.sh
index 6f5d5fe4b..00abbf28f 100755
--- a/t/tap-more.sh
+++ b/t/tap-more.sh
@@ -97,16 +97,7 @@ for try in 0 1; do
run_make=$MAKE
;;
*)
- # Some make implementations (e.g., HP-UX) don't grok '-j',
- # some require no space between '-j' and the number of jobs
- # (e.g., older GNU make versions), and some *do* require a
- # space between '-j' and the number of jobs (e.g., Solaris
- # dmake). We need a runtime test to see what works.
- echo 'all:' > Makefile
- for run_make in "$MAKE -j3" "$MAKE -j 3" "$MAKE"; do
- $run_make && break
- done
- rm -f Makefile
+ run_make="$MAKE -j3"
;;
esac
else