PressAnyKeyScreen → SplashScreen
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user