Module Name:    src
Committed By:   mlelstv
Date:           Sun Aug  1 14:50:54 UTC 2010

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

Log Message:
The erroneous error codes described in kern/43616 have been fixed.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/tests/fs/vfs/t_vnops.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_vnops.c
diff -u src/tests/fs/vfs/t_vnops.c:1.5 src/tests/fs/vfs/t_vnops.c:1.6
--- src/tests/fs/vfs/t_vnops.c:1.5	Mon Jul 26 13:37:48 2010
+++ src/tests/fs/vfs/t_vnops.c	Sun Aug  1 14:50:54 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_vnops.c,v 1.5 2010/07/26 13:37:48 njoly Exp $	*/
+/*	$NetBSD: t_vnops.c,v 1.6 2010/08/01 14:50:54 mlelstv Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -257,10 +257,6 @@
 	if (rump_sys_mkdir("dir2", 0777) == -1)
 		atf_tc_fail_errno("mkdir 2");
 
-	/* msdosfs fails both at least currently */
-	if (FSTYPE_MSDOS(tc)) {
-		atf_tc_expect_fail("PR kern/43616");
-	}
 	if (rump_sys_rename("dir1", "dir1/..") != -1 || errno != EINVAL)
 		atf_tc_fail_errno("self-dotdot to");
 

Reply via email to