diff --git a/Makefile b/Makefile index 98a4c1b53ce..d5c6f49cab3 100644 --- a/Makefile +++ b/Makefile @@ -214,7 +214,7 @@ test: all $(CI_ASYNC_HOOKS) \ $(CI_JS_SUITES) \ $(CI_NATIVE_SUITES) \ - known_issues + doctool known_issues $(MAKE) lint endif @@ -392,7 +392,7 @@ test-ci: | clear-stalled build-addons build-addons-napi doc out/Release/cctest --gtest_output=tap:cctest.tap $(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \ --mode=release --flaky-tests=$(FLAKY_TESTS) \ - $(TEST_CI_ARGS) $(CI_ASYNC_HOOKS) $(CI_JS_SUITES) $(CI_NATIVE_SUITES) known_issues + $(TEST_CI_ARGS) $(CI_ASYNC_HOOKS) $(CI_JS_SUITES) $(CI_NATIVE_SUITES) doctool known_issues # Clean up any leftover processes, error if found. ps awwx | grep Release/node | grep -v grep | cat @PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \ diff --git a/test/sequential/test-make-doc.js b/test/doctool/test-make-doc.js similarity index 100% rename from test/sequential/test-make-doc.js rename to test/doctool/test-make-doc.js diff --git a/tools/test.py b/tools/test.py index e5b3a550dde..48d4a1a1eaa 100755 --- a/tools/test.py +++ b/tools/test.py @@ -1555,6 +1555,7 @@ def PrintCrashed(code): IGNORED_SUITES = [ 'addons', 'addons-napi', + 'doctool', 'gc', 'internet', 'pummel',