https://git.reactos.org/?p=reactos.git;a=commitdiff;h=82b3cd36d047e22904e67baba636ab2372ff53ce

commit 82b3cd36d047e22904e67baba636ab2372ff53ce
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Mon Jan 30 19:33:03 2023 +0200
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Tue Jan 31 18:39:21 2023 +0100

    [WIN32KNT_APITEST] Comment out broken test for NtUserSystemParametersInfo
---
 modules/rostests/apitests/win32nt/ntuser/NtUserSystemParametersInfo.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/modules/rostests/apitests/win32nt/ntuser/NtUserSystemParametersInfo.c 
b/modules/rostests/apitests/win32nt/ntuser/NtUserSystemParametersInfo.c
index 518ed8e0e07..491a67d0c92 100644
--- a/modules/rostests/apitests/win32nt/ntuser/NtUserSystemParametersInfo.c
+++ b/modules/rostests/apitests/win32nt/ntuser/NtUserSystemParametersInfo.c
@@ -599,10 +599,12 @@ Test_SPI_SETDESKWALLPAPER(void)
     TEST(wcscmp(szNew, szOld) == 0);
 
     /* Set new Wallpaper */
+#if 0 // This is broken
     RtlInitUnicodeString(&ustrNew, L"test.bmp");
     TEST(NtUserSystemParametersInfo(SPI_SETDESKWALLPAPER, 0, &ustrNew, 0) == 
1);
     TEST(NtUserSystemParametersInfo(SPI_GETDESKWALLPAPER, MAX_PATH, szNew, 0) 
== 1);
     TEST(wcscmp(szNew, L"test.bmp") == 0);
+#endif
 
     /* Get Wallpaper, too small buffer  */
     szNew[0] = 0; szNew[1] = 0; szNew[2] = 0;

Reply via email to