Module Name: src
Committed By: pooka
Date: Fri Aug 27 05:34:46 UTC 2010
Modified Files:
src/tests/fs/puffs: t_basic.c
Log Message:
Now that atf issue #53 has been fixed, remove the
child-must-dies-before-parent kludge.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/fs/puffs/t_basic.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/tests/fs/puffs/t_basic.c
diff -u src/tests/fs/puffs/t_basic.c:1.7 src/tests/fs/puffs/t_basic.c:1.8
--- src/tests/fs/puffs/t_basic.c:1.7 Fri Jul 30 16:15:06 2010
+++ src/tests/fs/puffs/t_basic.c Fri Aug 27 05:34:46 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: t_basic.c,v 1.7 2010/07/30 16:15:06 pooka Exp $ */
+/* $NetBSD: t_basic.c,v 1.8 2010/08/27 05:34:46 pooka Exp $ */
#include <sys/types.h>
#include <sys/mount.h>
@@ -131,14 +131,6 @@
if (rump_sys_unmount("/mp", 0) == -1)
atf_tc_fail_errno("unmount");
#endif
-
- /*
- * XXX2: due to atf issue #53, we must make sure the child dies
- * before we exit.
- */
- signal(SIGCHLD, SIG_IGN);
- if (kill(pargs->pta_childpid, SIGTERM) == -1)
- atf_tc_fail_errno("kill");
}
ATF_TC(root_fifo);