Module Name:    src
Committed By:   pooka
Date:           Wed Jan 12 22:42:24 UTC 2011

Modified Files:
        src/tests/fs/vfs: t_union.c

Log Message:
xfail for PR kern/44377


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/fs/vfs/t_union.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/vfs/t_union.c
diff -u src/tests/fs/vfs/t_union.c:1.2 src/tests/fs/vfs/t_union.c:1.3
--- src/tests/fs/vfs/t_union.c:1.2	Wed Jan 12 21:45:39 2011
+++ src/tests/fs/vfs/t_union.c	Wed Jan 12 22:42:24 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_union.c,v 1.2 2011/01/12 21:45:39 pooka Exp $	*/
+/*	$NetBSD: t_union.c,v 1.3 2011/01/12 22:42:24 pooka Exp $	*/
 
 #include <sys/types.h>
 #include <sys/mount.h>
@@ -106,7 +106,11 @@
 	
 	/* check that we can whiteout stuff in the upper layer */
 	FSTEST_ENTER();
+	if (FSTYPE_FFSLOG(tc)) {
+		atf_tc_expect_signal(SIGABRT, "PR kern/44377");
+	}
 	RL(rump_sys_unlink(TFILE));
+	atf_tc_expect_pass();
 	ATF_REQUIRE_ERRNO(ENOENT, rump_sys_stat(TFILE, &sb) == -1);
 	FSTEST_EXIT();
 

Reply via email to