summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpooka <pooka@NetBSD.org>2010-07-05 17:12:48 +0000
committerpooka <pooka@NetBSD.org>2010-07-05 17:12:48 +0000
commit83eca23e73b3baae830fe7c2fee8a567e2eab133 (patch)
treed154b2bed3559352061e8bc3d0887473256d2855
parent9c8ebeed66a399d94ecd616106a6f96bc94d447e (diff)
* 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
-rw-r--r--tests/fs/ffs/t_mount.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/fs/ffs/t_mount.c b/tests/fs/ffs/t_mount.c
index adbf5dcb6fc..22269b4aa0a 100644
--- a/tests/fs/ffs/t_mount.c
+++ b/tests/fs/ffs/t_mount.c
@@ -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 @@ ATF_TC_BODY(48Kimage, tc)
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");