PressAnyKeyScreen → SplashScreen

This commit is contained in:
2025-09-27 16:38:26 +04:00
parent dd0c1a123c
commit 86439abea8
20 changed files with 527 additions and 59 deletions

View File

@@ -78,13 +78,21 @@ echo.
echo === %test_name% ===
echo Running: %test_file%
godot --headless --script "%test_file%"
if !errorlevel! equ 0 (
REM Run the test and capture the exit code
godot --headless --script "%test_file%" >temp_test_output.txt 2>&1
set test_exit_code=!errorlevel!
REM Display results based on exit code
if !test_exit_code! equ 0 (
echo PASSED: %test_name%
) else (
echo FAILED: %test_name%
set /a failed_tests+=1
)
set /a total_tests+=1
REM Clean up temporary file
if exist temp_test_output.txt del temp_test_output.txt
echo.
goto :eof