dxgi/tests: Don't run the 32-bit tests multithreaded.

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura 2022-02-07 14:46:33 +01:00 committed by Alexandre Julliard
parent 301065b1ff
commit dece48b9fb
1 changed files with 5 additions and 0 deletions

View File

@ -7595,6 +7595,11 @@ START_TEST(dxgi)
ok(EnumDisplaySettingsW(NULL, ENUM_REGISTRY_SETTINGS, &registry_mode), "Failed to get display mode.\n");
use_mt = !getenv("WINETEST_NO_MT_D3D");
/* Some host drivers (MacOS, Mesa radeonsi) never unmap memory even when
* requested. When using the chunk allocator, running the tests with more
* than one thread can exceed the 32-bit virtual address space. */
if (sizeof(void *) == 4 && !strcmp(winetest_platform, "wine"))
use_mt = FALSE;
argc = winetest_get_mainargs(&argv);
for (i = 2; i < argc; ++i)