Skip to content

Commit 4f87966

Browse files
committed
* fix Windows build -> Test stage
1 parent c31afdf commit 4f87966

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/scripts/windows/test_task.bat

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,15 @@ if "%ASAN%" equ "1" set ASAN_OPTS=--asan
150150

151151
mkdir c:\tests_tmp
152152

153-
nmake test TESTS="%OPCACHE_OPTS% -g FAIL,BORK,LEAK,XLEAK %ASAN_OPTS% --no-progress -q --offline --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp %PARALLEL%"
153+
echo Testing PHP executable...
154+
%PHP_BUILD_DIR%\php.exe --version
155+
if %errorlevel% neq 0 (
156+
echo PHP executable failed to start!
157+
exit /b 1
158+
)
159+
160+
echo Running async extension tests...
161+
%PHP_BUILD_DIR%\php.exe run-tests.php --no-progress -q --show-diff --temp-source c:\tests_tmp --temp-target c:\tests_tmp ext\async\tests
154162

155163
set EXIT_CODE=%errorlevel%
156164

0 commit comments

Comments
 (0)