12 Aug
2022
12 Aug
'22
4:56 p.m.
On 8/12/22 06:55, Jan Sikorski (@jsikorski) wrote:
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.
Indeed; I even noticed that but forgot to push the fixed version :-(