File tree 3 files changed +2
-11
lines changed
3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 205
205
tools/make-v8.sh
206
206
$(MAKE ) -C deps/v8 $(V8_ARCH ) .$(BUILDTYPE_LOWER ) $(V8_BUILD_OPTIONS )
207
207
208
- ifeq ($(NODE_TARGET_TYPE ) ,static_library)
209
- test : all
210
- $(MAKE ) cctest
211
- else
212
208
test : all
213
209
$(MAKE ) -s build-addons
214
210
$(MAKE ) -s build-addons-napi
@@ -221,7 +217,6 @@ test: all
221
217
$(CI_NATIVE_SUITES ) \
222
218
$(CI_DOC ) \
223
219
known_issues
224
- endif
225
220
226
221
# For a quick test, does not run linter or build doc
227
222
test-only : all
Original file line number Diff line number Diff line change @@ -1461,8 +1461,6 @@ config = {
1461
1461
' BUILDTYPE' : ' Debug' if options.debug else ' Release' ,
1462
1462
' USE_XCODE' : str(int(options.use_xcode or 0)),
1463
1463
' PYTHON' : sys.executable,
1464
- ' NODE_TARGET_TYPE' : variables[' node_target_type' ] if options.enable_static \
1465
- else ' ' ,
1466
1464
}
1467
1465
1468
1466
if options.prefix:
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok
110
110
if /i " %1 " == " ignore-flaky" set test_args = %test_args% --flaky-tests=dontcare& goto arg-ok
111
111
if /i " %1 " == " enable-vtune" set enable_vtune_arg = 1& goto arg-ok
112
112
if /i " %1 " == " dll" set dll = 1& goto arg-ok
113
- if /i " %1 " == " static" set enable_static = 1& goto arg-ok
113
+ if /i " %1 " == " static" set enable_static = 1& goto arg-ok
114
114
if /i " %1 " == " no-NODE-OPTIONS" set no_NODE_OPTIONS = 1& goto arg-ok
115
115
if /i " %1 " == " debug-http2" set debug_http2 = 1& goto arg-ok
116
116
if /i " %1 " == " debug-nghttp2" set debug_nghttp2 = 1& goto arg-ok
@@ -465,9 +465,8 @@ if "%config%"=="Debug" set test_args=--mode=debug %test_args%
465
465
if " %config% " == " Release" set test_args = --mode=release %test_args%
466
466
echo running 'cctest %cctest_args% '
467
467
" %config% \cctest" %cctest_args%
468
- REM when building a static library there's no binary to run tests
469
- if defined enable_static goto test-v8
470
468
call :run-python tools\test.py %test_args%
469
+ goto test-v8
471
470
472
471
:test-v8
473
472
if not defined custom_v8_test goto lint-cpp
@@ -520,7 +519,6 @@ set "localcppfilelist=%localcppfilelist% %1"
520
519
goto exit
521
520
522
521
:lint-js
523
- if defined enable_static goto exit
524
522
if defined lint_js_ci goto lint-js-ci
525
523
if not defined lint_js goto exit
526
524
if not exist tools\eslint goto no-lint
You can’t perform that action at this time.
0 commit comments