reactos/rostests/winetests/kernel32/roshack.diff
Stefan Ginsberg 2d59827e7e - Hack away kernel32 pipe tests -- ros' npfs is in a sad, sorry state
- Also skip process console tests (what's that you say? I am a lazy, hacky person? Couldn't agree more)

svn path=/trunk/; revision=38249
2008-12-21 21:52:28 +00:00

29 lines
935 B
Diff

Index: pipe.c
===================================================================
--- pipe.c (revision 38229)
+++ pipe.c (working copy)
@@ -1325,6 +1325,9 @@
{
HMODULE hmod;
+ skip("ROS-HACK: Skipping pipe tests -- ros' npfs is in a sorry state\n");
+ return;
+
hmod = GetModuleHandle("advapi32.dll");
pDuplicateTokenEx = (void *) GetProcAddress(hmod, "DuplicateTokenEx");
Index: process.c
===================================================================
--- process.c (revision 38229)
+++ process.c (working copy)
@@ -1127,6 +1127,9 @@
HANDLE hChildIn, hChildInInh, hChildOut, hChildOutInh, hParentIn, hParentOut;
const char* msg = "This is a std-handle inheritance test.";
unsigned msg_len;
+
+ skip("ROS-HACK: Skipping process console tests\n");
+ return;
memset(&startup, 0, sizeof(startup));
startup.cb = sizeof(startup);