diff options
author | Joyee Cheung <joyeec9h3@gmail.com> | 2017-10-15 08:57:10 +0800 |
---|---|---|
committer | Michaƫl Zasso <targos@protonmail.com> | 2017-10-18 08:56:43 -0700 |
commit | fefcd82c18c4b84794f802dfb26be53d54c626c1 (patch) | |
tree | 1218b13ecd743d7f50390c9130fac90c0126fc4f /Makefile | |
parent | 5829b8fbf9e6b2ba864c889264ff603f165e99e3 (diff) | |
download | node-new-fefcd82c18c4b84794f802dfb26be53d54c626c1.tar.gz |
test: test make doc and verify toc
PR-URL: https://github.com/nodejs/node/pull/16208
Fixes: https://github.com/nodejs/build/issues/887
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -200,6 +200,7 @@ else test: all $(MAKE) build-addons $(MAKE) build-addons-napi + $(MAKE) doc $(MAKE) cctest $(PYTHON) tools/test.py --mode=release -J \ $(CI_ASYNC_HOOKS) \ @@ -379,7 +380,7 @@ test-ci-js: | clear-stalled fi test-ci: LOGLEVEL := info -test-ci: | clear-stalled build-addons build-addons-napi +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) \ @@ -515,7 +516,7 @@ doc: $(NODE_EXE) doc-only $(apidoc_dirs): mkdir -p $@ -out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/ +out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets cp $< $@ out/doc/%: doc/% |