[PATCH 0/1] MR3958: windows.applicationmodel: Link with kernel32 for FindResourceW() on Windows 8.
On Windows 8 kernelbase is missing FindResourceW() which prevents the test from running. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3958
From: Francois Gouget <fgouget(a)codeweavers.com> On Windows 8 kernelbase is missing FindResourceW() which prevents the test from running. --- dlls/windows.applicationmodel/tests/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windows.applicationmodel/tests/Makefile.in b/dlls/windows.applicationmodel/tests/Makefile.in index 9289fe0bc8c..dafe28e9407 100644 --- a/dlls/windows.applicationmodel/tests/Makefile.in +++ b/dlls/windows.applicationmodel/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = windows.applicationmodel.dll -IMPORTS = combase advapi32 kernelbase +IMPORTS = combase advapi32 kernel32 application_EXTRADLLFLAGS = -mconsole -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3958
Hi, It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated. The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=137865 Your paranoid android. === w1064v1507 (32 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w1064v1809 (32 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w1064_tsign (32 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w10pro64 (32 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w10pro64_en_AE_u8 (32 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w11pro64 (32 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w1064v1507 (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w1064v1809 (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w1064_2qxl (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w1064_adm (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w1064_tsign (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w10pro64 (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w10pro64_ar (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w10pro64_ja (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w10pro64_zh_CN (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist. === w11pro64_amd (64 bit report) === windows.applicationmodel: Fatal: test 'application' does not exist.
FindResourceW() is not the issue, PathCchRemoveFileSpec() is (the Windows error message was wrong, see bug 55652). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3958#note_46979
This merge request was closed by Francois Gouget. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3958
participants (3)
-
Francois Gouget -
Francois Gouget (@fgouget) -
Marvin