File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,6 @@ coverage-report-js: ## Report JavaScript coverage results.
301301
302302cctest : all # # Run the C++ tests using the built `cctest` executable.
303303 @out/$(BUILDTYPE ) /$@ --gtest_filter=$(GTEST_FILTER )
304- ' $(OUT_NODE)' ./test/embedding/test-embedding.js
305304
306305.PHONY : list-gtests
307306list-gtests : # # List all available C++ gtests.
@@ -571,7 +570,7 @@ test-all-suites: | clear-stalled test-build bench-addons-build doc-only ## Run a
571570 $(PYTHON ) tools/test.py $(PARALLEL_ARGS ) --mode=$(BUILDTYPE_LOWER ) test/*
572571
573572JS_SUITES ?= default
574- NATIVE_SUITES ?= addons js-native-api node-api
573+ NATIVE_SUITES ?= addons js-native-api node-api embedding
575574# CI_* variables should be kept synchronized with the ones in vcbuild.bat
576575CI_NATIVE_SUITES ?= $(NATIVE_SUITES ) benchmark
577576CI_JS_SUITES ?= $(JS_SUITES ) pummel
@@ -613,7 +612,6 @@ test-ci: | clear-stalled bench-addons-build build-addons build-js-native-api-tes
613612 $(PYTHON ) tools/test.py $(PARALLEL_ARGS ) -p tap --logfile test.tap \
614613 --mode=$(BUILDTYPE_LOWER ) --flaky-tests=$(FLAKY_TESTS ) \
615614 $(TEST_CI_ARGS ) $(CI_JS_SUITES ) $(CI_NATIVE_SUITES ) $(CI_DOC )
616- ' $(OUT_NODE)' ./test/embedding/test-embedding.js
617615 $(info Clean up any leftover processes, error if found.)
618616 ps awwx | grep Release/node | grep -v grep | cat
619617 @PS_OUT=` ps awwx | grep Release/node | grep -v grep | awk ' {print $$1}' ` ; \
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ if /i "%arg:~-4%"=="help" goto help
1111cd %~dp0
1212
1313set JS_SUITES = default
14- set NATIVE_SUITES = addons js-native-api node-api
14+ set NATIVE_SUITES = addons js-native-api node-api embedding
1515@ rem CI_* variables should be kept synchronized with the ones in Makefile
1616set " CI_NATIVE_SUITES = %NATIVE_SUITES% benchmark"
1717set " CI_JS_SUITES = %JS_SUITES% pummel"
@@ -736,9 +736,6 @@ if not exist "%config%\cctest.exe" echo cctest.exe not found. Run "vcbuild test"
736736echo running 'cctest %cctest_args% '
737737" %config% \cctest" %cctest_args%
738738if %errorlevel% neq 0 set exit_code = %errorlevel%
739- echo running '%node_exe% test\embedding\test-embedding.js'
740- " %node_exe% " test\embedding\test-embedding.js
741- if %errorlevel% neq 0 set exit_code = %errorlevel%
742739:run-test-py
743740echo running 'python tools\test.py %test_args% '
744741python tools\test.py %test_args%
You can’t perform that action at this time.
0 commit comments