| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 0517e19 commit 553b052
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -351,10 +351,6 @@ test-cov: all | |||
| 351 | 351 | $(MAKE) cctest | |
| 352 | 352 | CI_SKIP_TESTS=$(COV_SKIP_TESTS) $(MAKE) jstest | |
| 353 | 353 | ||
| 354 | - .PHONY: test-parallel | ||
| 355 | - test-parallel: all | ||
| 356 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) parallel | ||
| 357 | - | ||
| 358 | 354 | .PHONY: test-valgrind | |
| 359 | 355 | test-valgrind: all | |
| 360 | 356 | $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) --valgrind sequential parallel message | |
@@ -583,16 +579,10 @@ run-ci: build-ci | |||
| 583 | 579 | $(MAKE) test-ci -j1 | |
| 584 | 580 | ||
| 585 | 581 | .PHONY: test-release | |
| 586 | - test-release: test-build | ||
| 587 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) | ||
| 588 | - | ||
| 589 | 582 | .PHONY: test-debug | |
| 590 | - test-debug: test-build | ||
| 591 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug | ||
| 592 | - | ||
| 593 | - .PHONY: test-message | ||
| 594 | - test-message: test-build | ||
| 595 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) message | ||
| 583 | + test-debug: BUILDTYPE_LOWER=debug | ||
| 584 | + test-release test-debug: test-build | ||
| 585 | + $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) | ||
| 596 | 586 | ||
| 597 | 587 | .PHONY: test-wpt | |
| 598 | 588 | test-wpt: all | |
@@ -604,22 +594,10 @@ test-wpt-report: | |||
| 604 | 594 | mkdir -p out/wpt | |
| 605 | 595 | WPT_REPORT=1 $(PYTHON) tools/test.py --shell $(NODE) $(PARALLEL_ARGS) wpt | |
| 606 | 596 | ||
| 607 | - .PHONY: test-simple | ||
| 608 | - test-simple: | cctest # Depends on 'all'. | ||
| 609 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) parallel sequential | ||
| 610 | - | ||
| 611 | - .PHONY: test-pummel | ||
| 612 | - test-pummel: all | ||
| 613 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) pummel | ||
| 614 | - | ||
| 615 | 597 | .PHONY: test-internet | |
| 616 | 598 | test-internet: all | |
| 617 | 599 | $(PYTHON) tools/test.py $(PARALLEL_ARGS) internet | |
| 618 | 600 | ||
| 619 | - .PHONY: test-benchmark | ||
| 620 | - test-benchmark: | bench-addons-build | ||
| 621 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) benchmark | ||
| 622 | - | ||
| 623 | 601 | .PHONY: test-tick-processor | |
| 624 | 602 | test-tick-processor: all | |
| 625 | 603 | $(PYTHON) tools/test.py $(PARALLEL_ARGS) tick-processor | |
@@ -687,10 +665,6 @@ test-addons-clean: | |||
| 687 | 665 | $(MAKE) test-js-native-api-clean | |
| 688 | 666 | $(MAKE) test-node-api-clean | |
| 689 | 667 | ||
| 690 | - .PHONY: test-async-hooks | ||
| 691 | - test-async-hooks: | ||
| 692 | - $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) async-hooks | ||
| 693 | - | ||
| 694 | 668 | .PHONY: test-with-async-hooks | |
| 695 | 669 | test-with-async-hooks: | |
| 696 | 670 | $(MAKE) build-addons | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -105,14 +105,9 @@ if /i "%1"=="test-addons" set test_args=%test_args% addons&set build_addons=1& | |||
| 105 | 105 | if /i "%1"=="test-doc" set test_args=%test_args% %CI_DOC%&set doc=1&&set lint_js=1&set lint_md=1&goto arg-ok | |
| 106 | 106 | if /i "%1"=="test-js-native-api" set test_args=%test_args% js-native-api&set build_js_native_api_tests=1&goto arg-ok | |
| 107 | 107 | if /i "%1"=="test-node-api" set test_args=%test_args% node-api&set build_node_api_tests=1&goto arg-ok | |
| 108 | - if /i "%1"=="test-benchmark" set test_args=%test_args% benchmark&goto arg-ok | ||
| 109 | - if /i "%1"=="test-simple" set test_args=%test_args% sequential parallel&goto arg-ok | ||
| 110 | - if /i "%1"=="test-message" set test_args=%test_args% message&goto arg-ok | ||
| 111 | 108 | if /i "%1"=="test-tick-processor" set test_args=%test_args% tick-processor&goto arg-ok | |
| 112 | 109 | if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok | |
| 113 | - if /i "%1"=="test-pummel" set test_args=%test_args% pummel&goto arg-ok | ||
| 114 | 110 | if /i "%1"=="test-known-issues" set test_args=%test_args% known_issues&goto arg-ok | |
| 115 | - if /i "%1"=="test-async-hooks" set test_args=%test_args% async-hooks&goto arg-ok | ||
| 116 | 111 | if /i "%1"=="test-all" set test_args=%test_args% gc internet pummel %common_test_suites%&set lint_cpp=1&set lint_js=1&goto arg-ok | |
| 117 | 112 | if /i "%1"=="test-node-inspect" set test_node_inspect=1&goto arg-ok | |
| 118 | 113 | if /i "%1"=="test-check-deopts" set test_check_deopts=1&goto arg-ok | |
@@ -745,7 +740,7 @@ set exit_code=1 | |||
| 745 | 740 | goto exit | |
| 746 | 741 | ||
| 747 | 742 | :help | |
| 748 | - echo vcbuild.bat [debug/release] [msi] [doc] [test/test-all/test-addons/test-doc/test-js-native-api/test-node-api/test-benchmark/test-internet/test-pummel/test-simple/test-message/test-tick-processor/test-known-issues/test-node-inspect/test-check-deopts/test-npm/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [ignore-flaky] [static/dll] [noprojgen] [projgen] [small-icu/full-icu/without-intl] [nobuild] [nosnapshot] [nonpm] [nocorepack] [ltcg] [licensetf] [sign] [ia32/x86/x64/arm64] [vs2019/vs2022] [download-all] [enable-vtune] [lint/lint-ci/lint-js/lint-md] [lint-md-build] [package] [build-release] [upload] [no-NODE-OPTIONS] [link-module path-to-module] [debug-http2] [debug-nghttp2] [clean] [cctest] [no-cctest] [openssl-no-asm] | ||
| 743 | + echo vcbuild.bat [debug/release] [msi] [doc] [test/test-all/test-addons/test-doc/test-js-native-api/test-node-api/test-internet/test-tick-processor/test-known-issues/test-node-inspect/test-check-deopts/test-npm/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [ignore-flaky] [static/dll] [noprojgen] [projgen] [small-icu/full-icu/without-intl] [nobuild] [nosnapshot] [nonpm] [nocorepack] [ltcg] [licensetf] [sign] [ia32/x86/x64/arm64] [vs2019/vs2022] [download-all] [enable-vtune] [lint/lint-ci/lint-js/lint-md] [lint-md-build] [package] [build-release] [upload] [no-NODE-OPTIONS] [link-module path-to-module] [debug-http2] [debug-nghttp2] [clean] [cctest] [no-cctest] [openssl-no-asm] | ||
| 749 | 744 | echo Examples: | |
| 750 | 745 | echo vcbuild.bat : builds release build | |
| 751 | 746 | echo vcbuild.bat debug : builds debug build | |
| Back | FazBrowse Home | New Git URL |
0 commit comments