Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
squash: same logic for windows build
Running .\vcbuild.bat test static should now only run the cctest target.
  • Loading branch information
danbev committed Aug 22, 2017
commit c9ef989483eda617486fef9eb7530c0a1134903b
7 changes: 4 additions & 3 deletions vcbuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,10 @@ if "%config%"=="Debug" set test_args=--mode=debug %test_args%
if "%config%"=="Release" set test_args=--mode=release %test_args%
echo running 'cctest %cctest_args%'
"%config%\cctest" %cctest_args%
call :run-python tools\test.py %test_args%
goto test-v8

if not defined enable_static (
call :run-python tools\test.py %test_args%
goto test-v8
)
:test-v8
if not defined custom_v8_test goto cpplint
call tools/test-v8.bat
Expand Down