https://git.reactos.org/?p=reactos.git;a=commitdiff;h=984f969d62899720de3f94d19d344a682755148c
commit 984f969d62899720de3f94d19d344a682755148c Author: winesync <[email protected]> AuthorDate: Sun Mar 13 01:35:16 2022 +0100 Commit: Mark Jansen <[email protected]> CommitDate: Sun Mar 20 19:28:21 2022 +0100 [WINESYNC] msi/tests: Don't skip a 64-bit test on Wine. Signed-off-by: Alexandre Julliard <[email protected]> wine commit id 3b621e6d6d0db956864907bc7960cdd20428b033 by Alexandre Julliard <[email protected]> --- modules/rostests/winetests/msi/action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rostests/winetests/msi/action.c b/modules/rostests/winetests/msi/action.c index 7be45166471..3b765d10565 100644 --- a/modules/rostests/winetests/msi/action.c +++ b/modules/rostests/winetests/msi/action.c @@ -5645,7 +5645,7 @@ static void test_register_typelib(void) } /* UnregisterTypeLibraries action fails in 64-bit Windows <= 7 */ - if (sizeof(void *) == 8) + if (sizeof(void *) == 8 && strcmp( winetest_platform, "wine" )) { win_skip("broken on 64-bit Windows\n"); return;
