Commit 301065b1 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

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

parent 364aed68
......@@ -34055,6 +34055,11 @@ START_TEST(d3d11)
char **argv;
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)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment