-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: enable debugger tests in CI #10456
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ set enable_vtune_arg= | |
set configure_flags= | ||
set build_addons= | ||
set dll= | ||
set ci_test_targets="addons debugger doctool inspector known_issues message parallel sequential" | ||
|
||
:next-arg | ||
if "%1"=="" goto args-done | ||
|
@@ -57,8 +58,8 @@ if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok | |
if /i "%1"=="noetw" set noetw=1&goto arg-ok | ||
if /i "%1"=="noperfctr" set noperfctr=1&goto arg-ok | ||
if /i "%1"=="licensertf" set licensertf=1&goto arg-ok | ||
if /i "%1"=="test" set test_args=%test_args% addons doctool known_issues message parallel sequential -J&set jslint=1&set build_addons=1&goto arg-ok | ||
if /i "%1"=="test-ci" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap addons doctool inspector known_issues message sequential parallel&set cctest_args=%cctest_args% --gtest_output=tap:cctest.tap&set build_addons=1&goto arg-ok | ||
if /i "%1"=="test" set test_args=%test_args% %ci_test_targets% -J&set jslint=1&set build_addons=1&goto arg-ok | ||
if /i "%1"=="test-ci" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap %ci_test_targets%&set cctest_args=%cctest_args% --gtest_output=tap:cctest.tap&set build_addons=1&goto arg-ok | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know the history here why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @nodejs/platform-windows, any idea? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
if /i "%1"=="test-addons" set test_args=%test_args% addons&set build_addons=1&goto arg-ok | ||
if /i "%1"=="test-simple" set test_args=%test_args% sequential parallel -J&goto arg-ok | ||
if /i "%1"=="test-message" set test_args=%test_args% message&goto arg-ok | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will include the quotes in the variable. Open the quotes before the variable name instead: