]> Zhao Yanbai Git Server - minix.git/commitdiff
test42: disable attach-to-PM test
authorDavid van Moolenbroek <david@minix3.org>
Sun, 13 Dec 2009 21:45:23 +0000 (21:45 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Sun, 13 Dec 2009 21:45:23 +0000 (21:45 +0000)
test/test42.c

index efd5870cb568899b9626a319a47f6ac6d56d14d1..293c190a75eab1b10541deeb4a9a2ab09be8da2c 100644 (file)
@@ -855,8 +855,11 @@ void test_attach()
   if (errno != EPERM) e(4);
 
   /* Attaching to PM is not allowed. */
+#if 0
+  /* FIXME: disabled until we can reliably determine PM's pid */
   if (ptrace(T_ATTACH, 0, 0, 0) != -1) e(5);
   if (errno != EPERM) e(6);
+#endif
 
   pid = traced_fork(test_attach_child);