Source-Changes-HG archive

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

[src/trunk]: src/tests/fs/vfs Fill in PR kern/43745 now that it exists.



details:   https://anonhg.NetBSD.org/src/rev/83714febb0f8
branches:  trunk
changeset: 757059:83714febb0f8
user:      pooka <pooka%NetBSD.org@localhost>
date:      Thu Aug 12 09:42:53 2010 +0000

description:
Fill in PR kern/43745 now that it exists.

    lfs_tfhremove: Expected failure: fhopen() for removed file succeeds (PR kern/43745): t_vfsops.c:161: Expected true value in rump_sys_fhopen(fhp, fhsize, O_RDONLY) == -1
    msdosfs_tfhremove: Expected failure: fhopen() for removed file succeeds (PR kern/43745): t_vfsops.c:161: Expected true value in rump_sys_fhopen(fhp, fhsize, O_RDONLY) == -1

diffstat:

 tests/fs/vfs/t_vfsops.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (19 lines):

diff -r 75f9970ef1b6 -r 83714febb0f8 tests/fs/vfs/t_vfsops.c
--- a/tests/fs/vfs/t_vfsops.c   Thu Aug 12 09:41:10 2010 +0000
+++ b/tests/fs/vfs/t_vfsops.c   Thu Aug 12 09:42:53 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: t_vfsops.c,v 1.5 2010/08/12 09:34:16 pooka Exp $       */
+/*     $NetBSD: t_vfsops.c,v 1.6 2010/08/12 09:42:53 pooka Exp $       */
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -156,7 +156,8 @@
        RL(rump_sys_unlink(FNAME));
 
        if (FSTYPE_MSDOS(tc) || FSTYPE_LFS(tc))
-               atf_tc_expect_fail("fhopen() for removed file succeeds (PR coming soon)");
+               atf_tc_expect_fail("fhopen() for removed file succeeds "
+                   "(PR kern/43745)");
        ATF_REQUIRE_ERRNO(ESTALE, rump_sys_fhopen(fhp, fhsize, O_RDONLY) == -1);
        atf_tc_expect_pass();
 



Home | Main Index | Thread Index | Old Index