From: David van Moolenbroek Date: Sun, 13 Dec 2009 21:45:23 +0000 (+0000) Subject: test42: disable attach-to-PM test X-Git-Tag: v3.1.6~155 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=307ad7b3b0e8815b43e1c40f81d7de5e2ebb94db;p=minix.git test42: disable attach-to-PM test --- diff --git a/test/test42.c b/test/test42.c index efd5870cb..293c190a7 100644 --- a/test/test42.c +++ b/test/test42.c @@ -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);