summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2017-04-17 00:01:00 -0400
committerBrian White <mscdex@mscdex.net>2017-04-30 03:17:25 -0400
commit7a5bac5d36cabf4061ea6a4de2ee0f779d44f11c (patch)
tree0fae50c6c4ee89148c133f1cef0a2d4088c29e09 /Makefile
parent91ccea65eae4d8676671685821d97dc4cb05fb73 (diff)
downloadandroid-node-v8-7a5bac5d36cabf4061ea6a4de2ee0f779d44f11c.tar.gz
android-node-v8-7a5bac5d36cabf4061ea6a4de2ee0f779d44f11c.tar.bz2
android-node-v8-7a5bac5d36cabf4061ea6a4de2ee0f779d44f11c.zip
build: add target for checking for perm deopts
PR-URL: https://github.com/nodejs/node/pull/12456 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0a217bd893..78c288930d 100644
--- a/Makefile
+++ b/Makefile
@@ -205,6 +205,9 @@ test-parallel: all
test-valgrind: all
$(PYTHON) tools/test.py --mode=release --valgrind sequential parallel message
+test-check-deopts: all
+ $(PYTHON) tools/test.py --mode=release --check-deopts parallel sequential -J
+
# Implicitly depends on $(NODE_EXE). We don't depend on it explicitly because
# it always triggers a rebuild due to it being a .PHONY rule. See the comment
# near the build-addons rule for more background.