summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2017-07-13 16:02:37 +0200
committerAnna Henningsen <anna@addaleax.net>2017-07-14 23:47:09 +0800
commit016d81ceec2e0836eedd27c797c1aebd045a8479 (patch)
tree03036220b00bb536418039b3d2dedb61fab30ab7 /Makefile
parent73078d607251b7c88dab96532c7e61606d70b2f8 (diff)
downloadandroid-node-v8-016d81ceec2e0836eedd27c797c1aebd045a8479.tar.gz
android-node-v8-016d81ceec2e0836eedd27c797c1aebd045a8479.tar.bz2
android-node-v8-016d81ceec2e0836eedd27c797c1aebd045a8479.zip
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3154baad44..01716fc731 100644
--- a/Makefile
+++ b/Makefile
@@ -433,13 +433,15 @@ test-async-hooks:
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