https://bugs.winehq.org/show_bug.cgi?id=35818
--- Comment #5 from Austin English austinenglish@gmail.com --- (In reply to Dmitry Timoshkov from comment #4)
(In reply to Austin English from comment #2)
If I run the .so directly with wine, it does: [austin@localhost tests]$ ../../../loader/wine mscms_test.exe.so profile fixme:mscms:SetStandardColorSpaceProfileA ( 0x73524742, (nil) ) stub fixme:mscms:SetStandardColorSpaceProfileA ( 0x73524742, 0x32eb18 ) stub fixme:mscms:SetStandardColorSpaceProfileW ( 0x73524742, (nil) ) stub fixme:mscms:SetStandardColorSpaceProfileW ( 0x73524742, 0x32e910 ) stub profile.c:675: Test failed: EnumColorProfilesA() failed (2) profile.c:689: Test failed: EnumColorProfilesA() failed (2) profile.c:729: Test failed: EnumColorProfilesW() failed (2) profile.c:742: Test failed: EnumColorProfilesW() failed (2) profile: 76 tests executed (0 marked as todo, 4 failures), 0 skipped.
These lines are marked as todo_wine and it's expected to fail this way under Wine when WINETEST_PLATFORM is not set.
It fails the same way when running from winetest: ./wine winetest -c -t ae-fedora64 -m austinenglish
profile.c:675: Test succeeded inside todo block: EnumColorProfilesA() failed (18) profile.c:689: Test succeeded inside todo block: EnumColorProfilesA() failed (18) profile.c:729: Test succeeded inside todo block: EnumColorProfilesW() failed (18) profile.c:742: Test succeeded inside todo block: EnumColorProfilesW() failed (18)
which to my knowledge, is supported. Or did I miss something?