Module Name:    src
Committed By:   pooka
Date:           Thu Aug 12 09:42:53 UTC 2010

Modified Files:
        src/tests/fs/vfs: t_vfsops.c

Log Message:
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


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/vfs/t_vfsops.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/vfs/t_vfsops.c
diff -u src/tests/fs/vfs/t_vfsops.c:1.5 src/tests/fs/vfs/t_vfsops.c:1.6
--- src/tests/fs/vfs/t_vfsops.c:1.5	Thu Aug 12 09:34:16 2010
+++ src/tests/fs/vfs/t_vfsops.c	Thu Aug 12 09:42:53 2010
@@ -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();
 

Reply via email to