Module Name: src
Committed By: pooka
Date: Mon Jul 5 17:12:49 UTC 2010
Modified Files:
src/tests/fs/ffs: t_mount.c
Log Message:
* fill PR number to xfail now that we have one -- let's try not
to add any xfail tests without an associated PR
* move xfail to the correct place
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/tests/fs/ffs/t_mount.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/ffs/t_mount.c
diff -u src/tests/fs/ffs/t_mount.c:1.2 src/tests/fs/ffs/t_mount.c:1.3
--- src/tests/fs/ffs/t_mount.c:1.2 Mon Jul 5 16:34:41 2010
+++ src/tests/fs/ffs/t_mount.c Mon Jul 5 17:12:48 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: t_mount.c,v 1.2 2010/07/05 16:34:41 jmmv Exp $ */
+/* $NetBSD: t_mount.c,v 1.3 2010/07/05 17:12:48 pooka Exp $ */
/*
* Adapted for rump and atf from a testcase supplied
@@ -28,11 +28,12 @@
if (ffs_newfs(&tmp, IMGNAME, IMGSIZE) != 0)
atf_tc_fail("newfs failed");
+ atf_tc_expect_fail("PR kern/43573");
if (ffs_mount(tmp, MNTDIR, 0) != 0) {
- atf_tc_expect_fail("No PR yet");
atf_tc_fail("mount failed");
- atf_tc_expect_pass();
}
+ atf_tc_expect_pass();
+
if (ffs_unmount(MNTDIR, 0) != 0)
atf_tc_fail("unmount failed");