summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatheus Marchini <matheus@sthima.com>2018-05-28 14:48:47 -0300
committerMatheus Marchini <matheus@sthima.com>2018-06-06 11:10:12 -0700
commite1fc52d9e6aba7005d1c1017b4825b307ec3859e (patch)
tree2d9c1831a7779cfc9f33dcfaaa3e8709ab001726 /Makefile
parentb7c7c0c4961fd4e382b7cadcfb7c8360b8904a4a (diff)
downloadandroid-node-v8-e1fc52d9e6aba7005d1c1017b4825b307ec3859e.tar.gz
android-node-v8-e1fc52d9e6aba7005d1c1017b4825b307ec3859e.tar.bz2
android-node-v8-e1fc52d9e6aba7005d1c1017b4825b307ec3859e.zip
test: create new directory v8-updates
`v8-updates` holds all tests related to V8 updates, for example, testing for postmortem metadata chages. PR-URL: https://github.com/nodejs/node/pull/20783 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b11168aaa4..424818eac4 100644
--- a/Makefile
+++ b/Makefile
@@ -560,6 +560,7 @@ test-with-async-hooks:
.PHONY: test-v8-all
.PHONY: test-v8-benchmarks
.PHONY: test-v8-intl
+.PHONY: test-v8-updates
ifneq ("","$(wildcard deps/v8/tools/run-tests.py)")
# Related CI job: node-test-commit-v8-linux
test-v8: v8 ## Runs the V8 test suite on deps/v8.
@@ -580,7 +581,10 @@ test-v8-benchmarks: v8
benchmarks \
$(TAP_V8_BENCHMARKS)
-test-v8-all: test-v8 test-v8-intl test-v8-benchmarks
+test-v8-updates:
+ $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) v8-updates
+
+test-v8-all: test-v8 test-v8-intl test-v8-benchmarks test-v8-updates
# runs all v8 tests
else
test-v8 test-v8-intl test-v8-benchmarks test-v8-all: