瀏覽代碼

Fixed testprocess on 32-bit Windows

Previously the test would kill the child process while it was in the process of initializing (loading DLLs, etc) and this would cause the test to fail.

(cherry picked from commit 937b7e6aead21bb75ca3ade81cb7664f57ffb3e3)
Sam Lantinga 5 月之前
父節點
當前提交
0b69860af6
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      test/testprocess.c

+ 5 - 2
test/testprocess.c

@@ -367,8 +367,11 @@ static int SDLCALL process_testKill(void *arg)
     result = SDL_WaitProcess(process, false, &exit_code);
     SDLTest_AssertCheck(result == false, "Process should not have exited yet");
 
-    SDLTest_AssertPass("About to call SDL_KillProcess(false)");
-    result = SDL_KillProcess(process, false);
+    /* Wait for the child process to finish initializing */
+    SDL_Delay(500);
+
+    SDLTest_AssertPass("About to call SDL_KillProcess(true)");
+    result = SDL_KillProcess(process, true);
     SDLTest_AssertCheck(result == true, "Process should have exited");
 
     exit_code = 0;