Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/tests/fs/ffs * fill PR number to xfail now that we have one ...



details:   https://anonhg.NetBSD.org/src/rev/adec106768b6
branches:  trunk
changeset: 756060:adec106768b6
user:      pooka <pooka%NetBSD.org@localhost>
date:      Mon Jul 05 17:12:48 2010 +0000

description:
* 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

diffstat:

 tests/fs/ffs/t_mount.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r d7a98eb4dd19 -r adec106768b6 tests/fs/ffs/t_mount.c
--- a/tests/fs/ffs/t_mount.c    Mon Jul 05 16:34:41 2010 +0000
+++ b/tests/fs/ffs/t_mount.c    Mon Jul 05 17:12:48 2010 +0000
@@ -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");
 



Home | Main Index | Thread Index | Old Index