In Windows, when invoked with filename = NULL, these functions:
WritePrivateProfileStringW, WritePrivateProfileSectionW, GetPrivateProfileSectionNamesW, GetPrivateProfileStringW
Behave as if filename is "win.ini" If the corresponding map exists in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\IniFileMapping then this map gets used.
Since in freshly installed Wine and Windows 10 such a map exists this tests only verifies that behavior. It does not verify actual writting/reading to C:\windows\win.ini.
Signed-off-by: Carlos Rivera carlos@superkaos.org ---
This IniFileMapping does not actually happen in Wine, which at least in the case of GetPrivateProfileStringW just tries to read from C:\windows\win.ini
This explains the failure in Wine of the first test in function test_profile_int (get 70, expected 0), where there is an invokation like this:
GetPrivateProfileIntA(NULL, NULL, 70, NULL)
And which ends up calling GetPrivateProfileStringW which because the first parameters are NULL invoke GetPrivateProfileSectionNamesW. It then gets the section names from win.ini. In wine, the IniFileMapping is ignored and if there is no win.ini file, it returns a 0 and the default value 70 ends up being returned to the user. If one creates a C:\win.ini file with just one section like: [hello]
Then it gets the section name, and when trying to convert it into a integer it gets converted to 0. The test passes. Thanks to zf in #winehackers for the tip that this bug had something to do with the presence of win.ini.
Interestinly enough, if one names the section something like: [42]
Then test fails with a value of 42 instead of the expected 0!
This behavior is the same in Windows except that it uses the entries in IniFileMapping. If the mapping is removed the file is used as in Wine.
My next commit will make Wine to make use of the IniFileMapping too when filename=NULL-->win.ini, as in Windows. --- dlls/kernel32/tests/Makefile.in | 2 +- dlls/kernel32/tests/profile.c | 92 +++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+), 1 deletion(-)
diff --git a/dlls/kernel32/tests/Makefile.in b/dlls/kernel32/tests/Makefile.in index e9516603ce..04c44e208a 100644 --- a/dlls/kernel32/tests/Makefile.in +++ b/dlls/kernel32/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = kernel32.dll -IMPORTS = user32 advapi32 +IMPORTS = user32 advapi32 kernelbase
SOURCES = \ actctx.c \ diff --git a/dlls/kernel32/tests/profile.c b/dlls/kernel32/tests/profile.c index f981558548..9d89009e46 100644 --- a/dlls/kernel32/tests/profile.c +++ b/dlls/kernel32/tests/profile.c @@ -25,6 +25,7 @@ #include "windef.h" #include "winbase.h" #include "windows.h" +#include "shlwapi.h" #include "sddl.h"
#define KEY "ProfileInt" @@ -1588,6 +1589,96 @@ static void test_registry_mapping(void) ok(ret, "got error %u\n", GetLastError()); }
+static void test_null_filename(void) +{ + /* Some profile functions assume filename is win.ini if NULL is given + and if such a map exists in IniFileMapping then they use it */ + + HKEY mapping_key, mapped_key; + char buffer[1024]; + char* p; + int found = 0; + LSTATUS ret; + + ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, + "Software\Microsoft\Windows NT\CurrentVersion\IniFileMapping\win.ini", + 0, KEY_READ | KEY_WRITE, &mapping_key); + + if(ret) + { + skip("Failed to find a win.ini IniFileMapping registry entry\n"); + return; + } + + if (PathFileExistsA("C:/windows/win.ini")) + { + ret = MoveFileA("C:/windows/win.ini", "C:/windows/winini.bak"); + + if (!ret) + { + skip("Failed to move C:/windows/win.ini out of the way to prevent possibly destructive tests.\n"); + return; + } + } + + ret = RegSetValueExA(mapping_key, "section1", 0, REG_SZ, (BYTE *)"USR:section1_map", sizeof("USR:section1_map")); + ok(!ret, "got error %u\n", ret); + ret = WritePrivateProfileStringA(NULL, NULL, NULL, "win.ini"); + todo_wine ok(ret, "got error %u\n", GetLastError()); + + ret = WritePrivateProfileStringA("section1", "name1", "42", NULL); + ok(ret, "got error %u\n", ret); + + ret = DeleteFileA("C:/windows/win.ini"); + ok(!ret, "expected failure\n"); + + ret = RegOpenKeyExA(HKEY_CURRENT_USER, "section1_map", 0, KEY_READ | KEY_WRITE, &mapped_key); + check_registry_value(mapped_key, "name1", "42"); + + check_profile_string("section1", "name1", NULL, "42"); + + memset(buffer, 0xc, sizeof(buffer)); + ret = GetPrivateProfileSectionNamesA(buffer, sizeof(buffer), NULL); + ok(ret, "got error %u\n", ret); + + if (ret) + { + p = buffer; + while (p < (buffer + sizeof(buffer) - 1)) + { + if (!strncmp("section1", p, sizeof(buffer))) + { + found = 1; + break; + } + while (*p++ && p < (buffer + sizeof(buffer) - 1)); + } + } + + ok(found, + "Expected "section1" in buffer, but buffer is %s\n", + debugstr_an(buffer, (ret + 2 >= sizeof(buffer) ? sizeof(buffer) : ret + 1))); + + ret = WritePrivateProfileSectionA("section1", "name2=mango\0", NULL); + ok(ret, "got error %u\n", ret); + + check_registry_value(mapped_key, "name2", "mango"); + + ret = DeleteFileA("C:/windows/win.ini"); + ok(!ret, "expected failure\n"); + + MoveFileA("C:/windows/winini.bak", "C:/windows/win.ini"); + + ret = RegDeleteValueA(mapping_key, "section1"); + ok(!ret, "got error %u\n", ret); + + ret = RegDeleteKeyA(HKEY_CURRENT_USER, "section1_map"); + ok(!ret, "got error %u\n", ret); + + RegCloseKey(mapped_key); + RegCloseKey(mapping_key); +}; + START_TEST(profile) { test_profile_int(); @@ -1617,4 +1708,5 @@ START_TEST(profile) test_WritePrivateProfileString(); test_profile_struct(); test_registry_mapping(); + test_null_filename(); }
When trying to access the filename mapping from IniFileMapping, if NULL is given as a filename, try to find the mapping of "win.ini". Just as PROFILE_Open looks for "win.ini" when looking for a NULL filename.
Signed-off-by: Carlos Rivera carlos@superkaos.org --- dlls/kernel32/profile.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/dlls/kernel32/profile.c b/dlls/kernel32/profile.c index 43b303fa25..c987c3f6b9 100644 --- a/dlls/kernel32/profile.c +++ b/dlls/kernel32/profile.c @@ -1028,6 +1028,9 @@ static HKEY open_file_mapping_key( const WCHAR *filename ) static HKEY mapping_key; HKEY key;
+ if (!filename) + filename = wininiW; + EnterCriticalSection( &PROFILE_CritSect );
if (!mapping_key && RegOpenKeyExW( HKEY_LOCAL_MACHINE, mapping_pathW, 0, KEY_WOW64_64KEY, &mapping_key ))
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=78127
Your paranoid android.
=== debiant (32 bit report) ===
kernel32: actctx:2506: unhandled exception 005562df in child process 00ec actctx:3470: unhandled exception 005562df in child process 00f4 actctx:3470: unhandled exception 005562df in child process 00fc actctx:3470: unhandled exception 005562df in child process 0104 actctx:3470: unhandled exception 005562df in child process 010c actctx:3470: unhandled exception 005562df in child process 0114 console:3843: unhandled exception 7b04bd21 in child process 01ac console:3933: unhandled exception 7b04bd21 in child process 01b4 console:3944: unhandled exception 7b04bd21 in child process 01d4 console:4059: unhandled exception 7b04bd21 in child process 0200 debugger.c:695: Test failed: exit code = 00000000 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:625: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 heap:1102: unhandled exception 005562df in child process 03f4 heap:1102: unhandled exception 005562df in child process 03fc heap:1102: unhandled exception 005562df in child process 0404 heap:1102: unhandled exception 005562df in child process 040c heap:1102: unhandled exception 005562df in child process 0414 heap:1102: unhandled exception 005562df in child process 041c heap:1102: unhandled exception 005562df in child process 0424 heap:1102: unhandled exception 005562df in child process 042c heap:1102: unhandled exception 005562df in child process 0434 heap:1102: unhandled exception 005562df in child process 043c heap:1102: unhandled exception 005562df in child process 0444 loader.c:3120: Test failed: expected exit code 195, got 0 loader.c:3138: Test failed: expected exit code 195, got 0 loader.c:3156: Test failed: expected exit code 197, got 0 loader.c:3174: Test failed: expected exit code 195, got 0 loader.c:3194: Test failed: expected exit code 198, got 0 loader.c:3223: Test failed: expected exit code 199, got 0 loader.c:3276: Test failed: expected exit code 199, got 0 loader.c:3476: Test failed: expected exit code 198, got 0 pipe:3261: unhandled exception 7b04d280 in child process 0648 pipe:3261: unhandled exception 7b04d280 in child process 066c pipe:3261: unhandled exception 7b04d280 in child process 0690 pipe:3527: unhandled exception 7ffde000 in child process 0698 pipe:3670: unhandled exception 005562df in child process 06a0 process:209: unhandled exception 005562df in child process 06cc process:209: unhandled exception 005562df in child process 06d4 process:209: unhandled exception 005562df in child process 06dc process:209: unhandled exception 005562df in child process 06e4 process:209: unhandled exception 005562df in child process 06ec process:209: unhandled exception 005562df in child process 06f4 process:209: unhandled exception 005562df in child process 06fc process:209: unhandled exception 005562df in child process 0704 process:209: unhandled exception 005562df in child process 070c process:209: unhandled exception 005562df in child process 0714 process:209: unhandled exception 005562df in child process 071c process:209: unhandled exception 005562df in child process 0724 process:209: unhandled exception 005562df in child process 072c process:209: unhandled exception 005562df in child process 0734 process:209: unhandled exception 005562df in child process 0744 process:1158: unhandled exception 005562df in child process 074c process:1219: unhandled exception 7b04bd21 in child process 0754 process:209: unhandled exception 005562df in child process 075c process:209: unhandled exception 005562df in child process 0764 process:209: unhandled exception 005562df in child process 076c process:209: unhandled exception 005562df in child process 0774 process:209: unhandled exception 005562df in child process 0784 process.c:1700: Test failed: ExitCode:value expected 5, but got 123 process:209: unhandled exception 005562df in child process 07b4 process:209: unhandled exception 005562df in child process 07bc process:209: unhandled exception 005562df in child process 07c4 process:209: unhandled exception 7b04d280 in child process 07d4 process:2565: unhandled exception 7b04d280 in child process 07e0 process.c:2603: Test failed: wrong exitcode 0 process:2611: unhandled exception 7b04bd21 in child process 07f0 process:209: unhandled exception 7b068e23 in child process 07f8 process:2783: unhandled exception 7b04d280 in child process 0810 process:209: unhandled exception 005562df in child process 00dc process:209: unhandled exception 005562df in child process 00ec process:209: unhandled exception 005562df in child process 00f4 process:209: unhandled exception 005562df in child process 00fc process:209: unhandled exception 005562df in child process 0104 process:209: unhandled exception 005562df in child process 010c process:209: unhandled exception 7b04bd21 in child process 0114 toolhelp:511: unhandled exception 7b0686cd in child process 0278 virtual:4157: unhandled exception 005562df in child process 02e4 virtual:4197: unhandled exception 005562df in child process 02f8 virtual:4197: unhandled exception 005562df in child process 0314 virtual:4197: unhandled exception 005562df in child process 0330
=== debiant (32 bit Chinese:China report) ===
kernel32: actctx:2506: unhandled exception 005562df in child process 00c8 actctx:3470: unhandled exception 005562df in child process 00d0 actctx:3470: unhandled exception 005562df in child process 00d8 actctx:3470: unhandled exception 005562df in child process 00e0 actctx:3470: unhandled exception 005562df in child process 00e8 actctx:3470: unhandled exception 005562df in child process 00f0 console:3843: unhandled exception 7b04bd21 in child process 0188 console:3933: unhandled exception 7b04bd21 in child process 0190 console:3944: unhandled exception 7b04bd21 in child process 01b0 console:4059: unhandled exception 7b04bd21 in child process 01dc debugger.c:695: Test failed: exit code = 00000000 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:625: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 heap:1102: unhandled exception 005562df in child process 03d0 heap:1102: unhandled exception 005562df in child process 03d8 heap:1102: unhandled exception 005562df in child process 03e0 heap:1102: unhandled exception 005562df in child process 03e8 heap:1102: unhandled exception 005562df in child process 03f0 heap:1102: unhandled exception 005562df in child process 03f8 heap:1102: unhandled exception 005562df in child process 0400 heap:1102: unhandled exception 005562df in child process 0408 heap:1102: unhandled exception 005562df in child process 0410 heap:1102: unhandled exception 005562df in child process 0418 heap:1102: unhandled exception 005562df in child process 0420 loader.c:3120: Test failed: expected exit code 195, got 0 loader.c:3138: Test failed: expected exit code 195, got 0 loader.c:3156: Test failed: expected exit code 197, got 0 loader.c:3174: Test failed: expected exit code 195, got 0 loader.c:3194: Test failed: expected exit code 198, got 0 loader.c:3223: Test failed: expected exit code 199, got 0 loader.c:3276: Test failed: expected exit code 199, got 0 loader.c:3476: Test failed: expected exit code 198, got 0 pipe:3261: unhandled exception 7b04d280 in child process 0624 pipe:3261: unhandled exception 7b04d280 in child process 0648 pipe:3261: unhandled exception 7b04d280 in child process 066c pipe:3527: unhandled exception 7ffde000 in child process 0674 pipe:3670: unhandled exception 005562df in child process 067c process:209: unhandled exception 005562df in child process 06a8 process:209: unhandled exception 005562df in child process 06b0 process:209: unhandled exception 005562df in child process 06b8 process:209: unhandled exception 005562df in child process 06c0 process:209: unhandled exception 005562df in child process 06c8 process:209: unhandled exception 005562df in child process 06d0 process:209: unhandled exception 005562df in child process 06d8 process:209: unhandled exception 005562df in child process 06e0 process:209: unhandled exception 005562df in child process 06e8 process:209: unhandled exception 005562df in child process 06f0 process:209: unhandled exception 005562df in child process 06f8 process:209: unhandled exception 005562df in child process 0700 process:209: unhandled exception 005562df in child process 0708 process:209: unhandled exception 005562df in child process 0710 process:209: unhandled exception 005562df in child process 0720 process:1158: unhandled exception 005562df in child process 0728 process:1219: unhandled exception 7b04bd21 in child process 0730 process:209: unhandled exception 005562df in child process 0738 process:209: unhandled exception 005562df in child process 0740 process:209: unhandled exception 005562df in child process 0748 process:209: unhandled exception 005562df in child process 0750 process:209: unhandled exception 005562df in child process 0760 process.c:1700: Test failed: ExitCode:value expected 5, but got 123 process:209: unhandled exception 005562df in child process 0790 process:209: unhandled exception 005562df in child process 0798 process:209: unhandled exception 005562df in child process 07a0 process:209: unhandled exception 7b04d280 in child process 07b0 process:2565: unhandled exception 7b04d280 in child process 07bc process.c:2603: Test failed: wrong exitcode 0 process:2611: unhandled exception 7b04bd21 in child process 07cc process:209: unhandled exception 7b068e23 in child process 07d4 process:2783: unhandled exception 7b04d280 in child process 07ec process:209: unhandled exception 005562df in child process 080c process:209: unhandled exception 005562df in child process 0814 process:209: unhandled exception 005562df in child process 081c process:209: unhandled exception 005562df in child process 002c process:209: unhandled exception 005562df in child process 00cc process:209: unhandled exception 005562df in child process 0034 process:209: unhandled exception 7b04bd21 in child process 00d4 toolhelp:511: unhandled exception 7b0686cd in child process 0298 virtual:4157: unhandled exception 005562df in child process 02a8 virtual:4197: unhandled exception 005562df in child process 02dc virtual:4197: unhandled exception 005562df in child process 02b0 virtual:4197: unhandled exception 005562df in child process 02c8
=== debiant (32 bit WoW report) ===
kernel32: actctx:2506: unhandled exception 005562df in child process 00ec actctx:3470: unhandled exception 005562df in child process 00f4 actctx:3470: unhandled exception 005562df in child process 00fc actctx:3470: unhandled exception 005562df in child process 0104 actctx:3470: unhandled exception 005562df in child process 010c actctx:3470: unhandled exception 005562df in child process 0114 console:3843: unhandled exception 7b04bd21 in child process 01a8 console:3933: unhandled exception 7b04bd21 in child process 01b0 console:3944: unhandled exception 7b04bd21 in child process 01d0 console:4059: unhandled exception 7b04bd21 in child process 01fc debugger.c:695: Test failed: exit code = 00000000 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:625: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 heap:1102: unhandled exception 005562df in child process 03f0 heap:1102: unhandled exception 005562df in child process 03f8 heap:1102: unhandled exception 005562df in child process 0400 heap:1102: unhandled exception 005562df in child process 0408 heap:1102: unhandled exception 005562df in child process 0410 heap:1102: unhandled exception 005562df in child process 0418 heap:1102: unhandled exception 005562df in child process 0420 heap:1102: unhandled exception 005562df in child process 0428 heap:1102: unhandled exception 005562df in child process 0430 heap:1102: unhandled exception 005562df in child process 0438 heap:1102: unhandled exception 005562df in child process 0440 loader.c:3120: Test failed: expected exit code 195, got 0 loader.c:3138: Test failed: expected exit code 195, got 0 loader.c:3156: Test failed: expected exit code 197, got 0 loader.c:3174: Test failed: expected exit code 195, got 0 loader.c:3194: Test failed: expected exit code 198, got 0 loader.c:3223: Test failed: expected exit code 199, got 0 loader.c:3276: Test failed: expected exit code 199, got 0 loader.c:3476: Test failed: expected exit code 198, got 0 pipe:3261: unhandled exception 7b04d280 in child process 0644 pipe:3261: unhandled exception 7b04d280 in child process 0668 pipe:3261: unhandled exception 7b04d280 in child process 068c pipe:3527: unhandled exception 7ffde000 in child process 0694 pipe:3670: unhandled exception 005562df in child process 069c process:209: unhandled exception 005562df in child process 06c8 process:209: unhandled exception 005562df in child process 06d0 process:209: unhandled exception 005562df in child process 06d8 process:209: unhandled exception 005562df in child process 06e0 process:209: unhandled exception 005562df in child process 06e8 process:209: unhandled exception 005562df in child process 06f0 process:209: unhandled exception 005562df in child process 06f8 process:209: unhandled exception 005562df in child process 0700 process:209: unhandled exception 005562df in child process 0708 process:209: unhandled exception 005562df in child process 0710 process:209: unhandled exception 005562df in child process 0718 process:209: unhandled exception 005562df in child process 0720 process:209: unhandled exception 005562df in child process 0728 process:209: unhandled exception 005562df in child process 0730 process:209: unhandled exception 005562df in child process 0740 process:1158: unhandled exception 005562df in child process 0748 process:1219: unhandled exception 7b04bd21 in child process 0750 process:209: unhandled exception 005562df in child process 0758 process:209: unhandled exception 005562df in child process 0760 process:209: unhandled exception 005562df in child process 0768 process:209: unhandled exception 005562df in child process 0770 process:209: unhandled exception 005562df in child process 0780 process.c:1700: Test failed: ExitCode:value expected 5, but got 123 process:209: unhandled exception 005562df in child process 07c0 process:209: unhandled exception 005562df in child process 07c8 process:209: unhandled exception 005562df in child process 07d0 process:209: unhandled exception 7b04d280 in child process 07e0 process:2565: unhandled exception 7b04d280 in child process 07ec process.c:2603: Test failed: wrong exitcode 0 process:2611: unhandled exception 7b04bd21 in child process 07fc process:209: unhandled exception 7b068e23 in child process 0804 process:2783: unhandled exception 7b04d280 in child process 081c process:209: unhandled exception 005562df in child process 00f8 process:209: unhandled exception 005562df in child process 0034 process:209: unhandled exception 005562df in child process 0100 process:209: unhandled exception 005562df in child process 0108 process:209: unhandled exception 005562df in child process 0118 process:209: unhandled exception 005562df in child process 00e8 process:209: unhandled exception 7b04bd21 in child process 0120 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "desktop\x00devices\x00extensions\x00intl\x00printerports\x00sounds\x00\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2 toolhelp:511: unhandled exception 7b0686cd in child process 028c virtual:4157: unhandled exception 005562df in child process 032c virtual:4197: unhandled exception 005562df in child process 0340 virtual:4197: unhandled exception 005562df in child process 02b0 virtual:4197: unhandled exception 005562df in child process 02c0
=== debiant (64 bit WoW report) ===
kernel32: actctx:2506: unhandled exception 005562df in child process 00c8 actctx:3470: unhandled exception 005562df in child process 00d0 actctx:3470: unhandled exception 005562df in child process 00d8 actctx:3470: unhandled exception 005562df in child process 00e0 actctx:3470: unhandled exception 005562df in child process 00e8 actctx:3470: unhandled exception 005562df in child process 00f0 console:3843: unhandled exception 7b04bd21 in child process 0188 console:3933: unhandled exception 7b04bd21 in child process 0190 console:3944: unhandled exception 7b04bd21 in child process 01b0 console:4059: unhandled exception 7b04bd21 in child process 01dc debugger.c:695: Test failed: exit code = 00000000 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:625: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 debugger.c:631: Test failed: wrong exit code : 0089fa00 heap:1102: unhandled exception 005562df in child process 03d0 heap:1102: unhandled exception 005562df in child process 03d8 heap:1102: unhandled exception 005562df in child process 03e0 heap:1102: unhandled exception 005562df in child process 03e8 heap:1102: unhandled exception 005562df in child process 03f0 heap:1102: unhandled exception 005562df in child process 03f8 heap:1102: unhandled exception 005562df in child process 0400 heap:1102: unhandled exception 005562df in child process 0408 heap:1102: unhandled exception 005562df in child process 0410 heap:1102: unhandled exception 005562df in child process 0418 heap:1102: unhandled exception 005562df in child process 0420 loader.c:3120: Test failed: expected exit code 195, got 0 loader.c:3138: Test failed: expected exit code 195, got 0 loader.c:3156: Test failed: expected exit code 197, got 0 loader.c:3174: Test failed: expected exit code 195, got 0 loader.c:3194: Test failed: expected exit code 198, got 0 loader.c:3223: Test failed: expected exit code 199, got 0 loader.c:3276: Test failed: expected exit code 199, got 0 loader.c:3476: Test failed: expected exit code 198, got 0 pipe:3261: unhandled exception 7b04d280 in child process 0624 pipe:3261: unhandled exception 7b04d280 in child process 0648 pipe:3261: unhandled exception 7b04d280 in child process 066c pipe:3527: unhandled exception 7ffde000 in child process 0674 pipe:3670: unhandled exception 005562df in child process 067c process:209: unhandled exception 005562df in child process 06a8 process:209: unhandled exception 005562df in child process 06b0 process:209: unhandled exception 005562df in child process 06b8 process:209: unhandled exception 005562df in child process 06c0 process:209: unhandled exception 005562df in child process 06c8 process:209: unhandled exception 005562df in child process 06d0 process:209: unhandled exception 005562df in child process 06d8 process:209: unhandled exception 005562df in child process 06e0 process:209: unhandled exception 005562df in child process 06e8 process:209: unhandled exception 005562df in child process 06f0 process:209: unhandled exception 005562df in child process 06f8 process:209: unhandled exception 005562df in child process 0700 process:209: unhandled exception 005562df in child process 0708 process:209: unhandled exception 005562df in child process 0710 process:209: unhandled exception 005562df in child process 0720 process:1158: unhandled exception 005562df in child process 0728 process:1219: unhandled exception 7b04bd21 in child process 0730 process:209: unhandled exception 005562df in child process 0738 process:209: unhandled exception 005562df in child process 0740 process:209: unhandled exception 005562df in child process 0748 process:209: unhandled exception 005562df in child process 0750 process:209: unhandled exception 005562df in child process 0760 process.c:1700: Test failed: ExitCode:value expected 5, but got 123 process:209: unhandled exception 005562df in child process 07a0 process:209: unhandled exception 005562df in child process 07a8 process:209: unhandled exception 005562df in child process 07b0 process:209: unhandled exception 7b04d280 in child process 07c0 process:2565: unhandled exception 7b04d280 in child process 07cc process.c:2603: Test failed: wrong exitcode 0 process:2611: unhandled exception 7b04bd21 in child process 07dc process:209: unhandled exception 7b068e23 in child process 07e4 process:2783: unhandled exception 7b04d280 in child process 07fc process:209: unhandled exception 005562df in child process 081c process:209: unhandled exception 005562df in child process 002c process:209: unhandled exception 005562df in child process 00bc process:209: unhandled exception 005562df in child process 0034 process:209: unhandled exception 005562df in child process 00d4 process:209: unhandled exception 005562df in child process 00dc process:209: unhandled exception 7b04bd21 in child process 00e4 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "desktop\x00devices\x00extensions\x00intl\x00printerports\x00sounds\x00\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2 toolhelp:511: unhandled exception 7b0686cd in child process 0338 virtual:4157: unhandled exception 005562df in child process 0380 virtual:4197: unhandled exception 005562df in child process 0388 virtual:4197: unhandled exception 005562df in child process 038c virtual:4197: unhandled exception 005562df in child process 01e4
Hi, Can these two patches be ignored? I have found and fixed a few problems with them.
Thanks, crc.
September 4, 2020 3:43 PM, "Carlos Rivera" carlos@superkaos.org wrote:
diff --git a/dlls/kernel32/tests/Makefile.in b/dlls/kernel32/tests/Makefile.in index e9516603ce..04c44e208a 100644 --- a/dlls/kernel32/tests/Makefile.in +++ b/dlls/kernel32/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = kernel32.dll -IMPORTS = user32 advapi32 +IMPORTS = user32 advapi32 kernelbase
kernelbase.dll isn't available prior to Windows 7. You could link to shlwapi, but you should probably just use GetFileAttributesA() instead of PathFileExistsA() (cf. dlls/kernelbase/path.c:2589-2604).
Chip
On Fri, Sep 04, 2020 at 08:50:02PM +0000, Chip Davis wrote:
September 4, 2020 3:43 PM, "Carlos Rivera" carlos@superkaos.org wrote:
diff --git a/dlls/kernel32/tests/Makefile.in b/dlls/kernel32/tests/Makefile.in index e9516603ce..04c44e208a 100644 --- a/dlls/kernel32/tests/Makefile.in +++ b/dlls/kernel32/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = kernel32.dll -IMPORTS = user32 advapi32 +IMPORTS = user32 advapi32 kernelbase
kernelbase.dll isn't available prior to Windows 7. You could link to shlwapi, but you should probably just use GetFileAttributesA() instead of PathFileExistsA() (cf. dlls/kernelbase/path.c:2589-2604).
Thanks! I will use GetFileAttributesA instead. crc.
Hi,
While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check?
Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=78126
Your paranoid android.
=== w8 (testbot log) ===
The task timed out
=== w8adm (32 bit report) ===
kernel32: profile: Timeout
=== w864 (testbot log) ===
The task timed out
=== w1064v1507 (32 bit report) ===
kernel32: profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc"\x" profile.c:1636: Test failed: got type 8889456 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "AeDebug\x00CLOCK\x00COLORS\x00CONSOLE\x00CURSORS\x00DESKTOP\x00Devices\x00EMBEDDING\x00EXTENSIONS\x00Fonts\x00FontSubstitutes\x00GRE_INITIALIZE\x00Intl\x00IOPROCS\x00MCI EXTENSIONS\x00MODULECOMPATIBILITY\x00MSCHARMAP\x00NET_FILES\x00NWCS\x00Ports\x00PrinterPorts\x00SOUNDS\x00TRUETYPE\x00TWA"... profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc"\" profile.c:1665: Test failed: got type 8847552 profile.c:1668: Test failed: expected failure profile.c:1676: Test failed: got error 2
=== w1064v1809 (32 bit report) ===
kernel32: profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc"\x" profile.c:1636: Test failed: got type 0 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "AeDebug\x00CLOCK\x00COLORS\x00CONSOLE\x00CURSORS\x00DESKTOP\x00Devices\x00EMBEDDING\x00EXTENSIONS\x00Fonts\x00FontSubstitutes\x00GRE_INITIALIZE\x00Intl\x00IOPROCS\x00MCI EXTENSIONS\x00MODULECOMPATIBILITY\x00MSCHARMAP\x00NET_FILES\x00NWCS\x00Ports\x00PrinterPorts\x00SOUNDS\x00TRUETYPE\x00TWA"... profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc"" profile.c:1665: Test failed: got type 11569352 profile.c:1668: Test failed: expected failure profile.c:1676: Test failed: got error 2
=== w10pro64 (32 bit report) ===
kernel32: profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc"\x" profile.c:1636: Test failed: got type 5 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "AeDebug\x00CLOCK\x00COLORS\x00CONSOLE\x00CURSORS\x00DESKTOP\x00Devices\x00EMBEDDING\x00EXTENSIONS\x00Fonts\x00FontSubstitutes\x00GRE_INITIALIZE\x00Intl\x00IOPROCS\x00MCI EXTENSIONS\x00MODULECOMPATIBILITY\x00MSCHARMAP\x00NET_FILES\x00NWCS\x00Ports\x00PrinterPorts\x00SOUNDS\x00TRUETYPE\x00TWA"... profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1665: Test failed: got type 13697536 profile.c:1668: Test failed: expected failure profile.c:1676: Test failed: got error 2
=== debiant (32 bit report) ===
kernel32: profile.c:223: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1642: Test failed: got error 0 profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2
=== debiant (32 bit French report) ===
kernel32: profile.c:223: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1642: Test failed: got error 0 profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2
=== debiant (32 bit Japanese:Japan report) ===
kernel32: profile.c:223: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1642: Test failed: got error 0 profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2
=== debiant (32 bit Chinese:China report) ===
kernel32: profile.c:223: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1642: Test failed: got error 0 profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2
=== debiant (32 bit WoW report) ===
kernel32: profile.c:223: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1642: Test failed: got error 0 profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2
=== debiant (64 bit WoW report) ===
kernel32: profile.c:223: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2 profile.c:1633: Test failed: expected failure profile.c:1636: Test failed: got error 6 profile.c:1636: Test failed: expected "42", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc" profile.c:1636: Test failed: got type 9041992 profile.c:1638: Test failed: expected len 2, got 7 profile.c:1638: Test failed: expected "42", got "default" profile.c:1642: Test failed: got error 0 profile.c:1658: Test failed: Expected "section1" in buffer, but buffer is "\x00" profile.c:1665: Test failed: got error 6 profile.c:1665: Test failed: expected "mango", got "\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x01" profile.c:1665: Test failed: got type 13 profile.c:1676: Test failed: got error 2