mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
27 lines
758 B
Diff
27 lines
758 B
Diff
Index: shlexec.c
|
|
===================================================================
|
|
--- shlexec.c (revision 38229)
|
|
+++ shlexec.c (working copy)
|
|
@@ -1577,6 +1577,8 @@
|
|
|
|
START_TEST(shlexec)
|
|
{
|
|
+ skip("ROS-HACK: Skipping shell execute tests\n");
|
|
+ return;
|
|
|
|
myARGC = winetest_get_mainargs(&myARGV);
|
|
if (myARGC >= 3)
|
|
Index: systray.c
|
|
===================================================================
|
|
--- systray.c (revision 38229)
|
|
+++ systray.c (working copy)
|
|
@@ -138,6 +138,9 @@
|
|
RECT rc;
|
|
HMODULE huser32, hshell32;
|
|
|
|
+ skip("ROS-HACK: Skipping systray tests\n");
|
|
+ return;
|
|
+
|
|
hshell32 = GetModuleHandleA("shell32.dll");
|
|
pShell_NotifyIconW = (void*)GetProcAddress(hshell32, "Shell_NotifyIconW");
|
|
|