Skip to content
Open
Changes from all commits
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
12 changes: 6 additions & 6 deletions jenkins/scripts/windows/test.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ if exist test.tap (
tap2junit -i test.tap -o js-tests.junit.xml
if errorlevel 1 exit /b
)
if exist js-tests.junit.xml (
call %~dp0buildpulse.cmd js-tests.junit.xml
)
@REM if exist js-tests.junit.xml (
@REM call %~dp0buildpulse.cmd js-tests.junit.xml
@REM )
if exist cctest.tap (
tap2junit -i cctest.tap -o cctest.junit.xml
if errorlevel 1 exit /b
)
if exist cctest.junit.xml (
call %~dp0buildpulse.cmd cctest.junit.xml
)
@REM if exist cctest.junit.xml (
@REM call %~dp0buildpulse.cmd cctest.junit.xml
@REM )

:: The JUnit Plugin only marks the job as Unstable when it finds any kind of failure, including flaky tests.
:: We need to use the return code of vcbuild.bat to fail the job when there are real failures.
Expand Down