summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2017-07-13 16:02:37 +0200
committerMyles Borins <mylesborins@google.com>2017-07-21 14:35:04 -0400
commit8dec80211e2a8acfc97f38616e2b9ef4931d0ad5 (patch)
tree842a5b516d28cee3247e985d1da5e70bc7550b49
parenta3e2560f7aa78ed6fcf63b36437130945f3c97bd (diff)
downloadnode-new-8dec80211e2a8acfc97f38616e2b9ef4931d0ad5.tar.gz
build: run test-hash-seed at the end of test-v8
The v8 and test-hash-seed targets cannot be run in parallel because they need different copies of the deps/v8 directory. Ref: https://github.com/nodejs/node/pull/14004#issuecomment-314774773 PR-URL: https://github.com/nodejs/node/pull/14219 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6872ce2c7b..52bd44fa2e 100644
--- a/Makefile
+++ b/Makefile
@@ -296,13 +296,15 @@ test-timers-clean:
ifneq ("","$(wildcard deps/v8/tools/run-tests.py)")
-test-v8: v8 test-hash-seed
+test-v8: v8
# note: performs full test unless QUICKCHECK is specified
deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \
--mode=$(BUILDTYPE_LOWER) $(V8_TEST_OPTIONS) $(QUICKCHECK_ARG) \
--no-presubmit \
--shell-dir=$(PWD)/deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) \
$(TAP_V8)
+ @echo Testing hash seed
+ $(MAKE) test-hash-seed
test-v8-intl: v8
# note: performs full test unless QUICKCHECK is specified