Fix integration test waiting for client to close

As described in #5295, the integration test script waits for the client
to close before launching the next one. I don't know what causes this,
but disabling full-screen mode works around the issue.

I don't know if this is okay. @ChillerDragon?

Fixes #5295.
This commit is contained in:
heinrich5991 2022-06-01 12:15:38 +02:00
parent 264c6f969d
commit b0fcda57c2

View file

@ -170,6 +170,7 @@ $tool ./DDNet \
"cl_input_fifo client1.fifo;
player_name client1;
cl_download_skins 0;
gfx_fullscreen 0;
$client_args
connect localhost:$port" &> client1.log || fail client1 "$?" &
@ -183,6 +184,7 @@ $tool ./DDNet \
"cl_input_fifo client2.fifo;
player_name client2;
cl_download_skins 0;
gfx_fullscreen 0;
$client_args
connect localhost:$port" &> client2.log || fail client2 "$?" &