diff options
author | Joyee Cheung <joyeec9h3@gmail.com> | 2017-03-27 13:55:19 +0800 |
---|---|---|
committer | Joyee Cheung <joyeec9h3@gmail.com> | 2017-04-11 11:27:22 +0800 |
commit | baa2602539736fac41ad67303440587fb11c5cdc (patch) | |
tree | 521f0733816c95f200252a0e65905f7202c1617c /Makefile | |
parent | c694633328bee261345dd29e7f2a014136c69015 (diff) | |
download | node-new-baa2602539736fac41ad67303440587fb11c5cdc.tar.gz |
build: add test-gc-clean and test-gc PHONY rules
PR-URL: https://github.com/nodejs/node/pull/12059
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -309,6 +309,9 @@ clear-stalled: test-gc: all test/gc/build/Release/binding.node $(PYTHON) tools/test.py --mode=release gc +test-gc-clean: + $(RM) -r test/gc/build + test-build: | all build-addons build-addons-napi test-build-addons-napi: all build-addons-napi @@ -963,6 +966,8 @@ endif test-ci \ test-ci-js \ test-ci-native \ + test-gc \ + test-gc-clean \ test-v8 \ test-v8-all \ test-v8-benchmarks \ |