12 Aug
2022
12 Aug
'22
11:55 a.m.
Jan Sikorski (@jsikorski) commented about dlls/d3d11/tests/d3d11.c:
static void run_mt_test(const struct test_entry *t) { - if (t->fl) - t->u.test_fl(t->fl); - else + if (!t->fl) t->u.test(); + + winetest_push_context("Feature level %#x", t->fl); + t->u.test_fl(t->fl); + winetest_pop_context(); }
It looks like this should return after running the test in the `!t->fl` case. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/633#note_6136