Source-Changes-HG archive

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

[src/trunk]: src/tests/fs/vfs Remove "expected failure" for tmpfs PRs that ar...



details:   https://anonhg.NetBSD.org/src/rev/c9c309d8432e
branches:  trunk
changeset: 765547:c9c309d8432e
user:      martin <martin%NetBSD.org@localhost>
date:      Mon May 30 13:10:38 2011 +0000

description:
Remove "expected failure" for tmpfs PRs that are now fixed.

diffstat:

 tests/fs/vfs/t_vnops.c |  8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diffs (43 lines):

diff -r b7614e4e1320 -r c9c309d8432e tests/fs/vfs/t_vnops.c
--- a/tests/fs/vfs/t_vnops.c    Mon May 30 13:03:56 2011 +0000
+++ b/tests/fs/vfs/t_vnops.c    Mon May 30 13:10:38 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_vnops.c,v 1.23 2011/04/01 17:40:54 hannken Exp $     */
+/*     $NetBSD: t_vnops.c,v 1.24 2011/05/30 13:10:38 martin Exp $      */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -175,8 +175,10 @@
                xerrno = ESTALE;
        else
                xerrno = ENOENT;
+       /*
        if (FSTYPE_TMPFS(tc))
                atf_tc_expect_signal(-1, "PR kern/44657");
+       */
        ATF_REQUIRE_ERRNO(xerrno, rump_sys_chdir("..") == -1);
        FSTEST_EXIT();
 }
@@ -293,8 +295,10 @@
        if (! FSTYPE_MSDOS(tc))
                ATF_CHECK_EQ(sb.st_nlink, 3);
        RL(rump_sys_rmdir(pb3));
+       /*
        if (FSTYPE_TMPFS(tc))
                atf_tc_expect_signal(-1, "PR kern/44288");
+       */
        RL(rump_sys_rmdir(pb1));
 }
 
@@ -322,9 +326,11 @@
                atf_tc_fail_errno("self-dotdot from");
        atf_tc_expect_pass();
 
+       /*
        if (FSTYPE_TMPFS(tc)) {
                atf_tc_expect_fail("PR kern/43617");
        }
+       */
        if (rump_sys_rename("dir1", "dir2/..") != -1 || errno != EINVAL)
                atf_tc_fail("other-dotdot");
 



Home | Main Index | Thread Index | Old Index