-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: nodejs/node-v0.x-archive#25686 Reviewed-By: Julien Gilli <[email protected]>
- Loading branch information
1 parent
df59d43
commit 100dd19
Showing
2 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,8 @@ if /i "%1"=="test-simple" set test=test-simple&goto arg-ok | |
if /i "%1"=="test-message" set test=test-message&goto arg-ok | ||
if /i "%1"=="test-gc" set test=test-gc&set buildnodeweak=1&goto arg-ok | ||
if /i "%1"=="test-all" set test=test-all&set buildnodeweak=1&goto arg-ok | ||
if /i "%1"=="test" set test=test&goto arg-ok | ||
if /i "%1"=="test-ci" set test=test-ci&set nosnapshot=1&goto arg-ok | ||
if /i "%1"=="test" set test=test&set jslint=1&goto arg-ok | ||
if /i "%1"=="msi" set msi=1&set licensertf=1&goto arg-ok | ||
if /i "%1"=="upload" set upload=1&goto arg-ok | ||
if /i "%1"=="jslint" set jslint=1&goto arg-ok | ||
|
@@ -73,7 +74,6 @@ goto next-arg | |
|
||
:args-done | ||
if defined upload goto upload | ||
if defined jslint goto jslint | ||
|
||
if "%config%"=="Debug" set debug_arg=--debug | ||
if "%target_arch%"=="x64" set msiplatform=x64 | ||
|
@@ -166,12 +166,15 @@ if errorlevel 1 echo Failed to sign msi&goto exit | |
|
||
:run | ||
@rem Run tests if requested. | ||
if "%test%"=="" goto exit | ||
if "%test%"=="" goto jslint | ||
|
||
if "%config%"=="Debug" set test_args=--mode=debug | ||
if "%config%"=="Release" set test_args=--mode=release | ||
|
||
set test_args=%test_args% --arch=%target_arch% | ||
|
||
if "%test%"=="test" set test_args=%test_args% simple message | ||
if "%test%"=="test-ci" set test_args=%test_args% -p tap --logfile test.tap simple message internet | ||
if "%test%"=="test-internet" set test_args=%test_args% internet | ||
if "%test%"=="test-pummel" set test_args=%test_args% pummel | ||
if "%test%"=="test-simple" set test_args=%test_args% simple | ||
|
@@ -193,8 +196,7 @@ goto exit | |
:run-tests | ||
echo running 'python tools/test.py %test_args%' | ||
python tools/test.py %test_args% | ||
if "%test%"=="test" goto jslint | ||
goto exit | ||
goto jslint | ||
|
||
:create-msvs-files-failed | ||
echo Failed to create vc project files. | ||
|
@@ -212,6 +214,7 @@ scp Release\node.pdb [email protected]:~/web/nodejs.org/dist/v%NODE_VERSION%/node. | |
goto exit | ||
|
||
:jslint | ||
if not defined jslint goto exit | ||
echo running jslint | ||
set PYTHONPATH=tools/closure_linter/ | ||
python tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js | ||
|