Module Name:    src
Committed By:   pooka
Date:           Thu Mar  3 10:57:30 UTC 2011

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

Log Message:
Apparently my last commit to msdosfs_vnops.c fixed the (harmless?)
buffer overrun in rename (>15 years old bug), so re-enable other
msdosfs rename tests too.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/tests/fs/vfs/t_renamerace.c
cvs rdiff -u -r1.20 -r1.21 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_renamerace.c
diff -u src/tests/fs/vfs/t_renamerace.c:1.18 src/tests/fs/vfs/t_renamerace.c:1.19
--- src/tests/fs/vfs/t_renamerace.c:1.18	Tue Jan 11 09:32:50 2011
+++ src/tests/fs/vfs/t_renamerace.c	Thu Mar  3 10:57:30 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_renamerace.c,v 1.18 2011/01/11 09:32:50 pooka Exp $	*/
+/*	$NetBSD: t_renamerace.c,v 1.19 2011/03/03 10:57:30 pooka Exp $	*/
 
 /*
  * Modified for rump and atf from a program supplied
@@ -84,9 +84,6 @@
 	if (FSTYPE_LFS(tc))
 		atf_tc_expect_signal(-1, "PR kern/43582");
 
-	if (FSTYPE_MSDOS(tc))
-		atf_tc_skip("test fails in some setups, reason unknown");
-
 	if (FSTYPE_RUMPFS(tc))
 		atf_tc_skip("rename not supported by fs");
 

Index: src/tests/fs/vfs/t_vnops.c
diff -u src/tests/fs/vfs/t_vnops.c:1.20 src/tests/fs/vfs/t_vnops.c:1.21
--- src/tests/fs/vfs/t_vnops.c:1.20	Tue Mar  1 20:16:33 2011
+++ src/tests/fs/vfs/t_vnops.c	Thu Mar  3 10:57:30 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_vnops.c,v 1.20 2011/03/01 20:16:33 pooka Exp $	*/
+/*	$NetBSD: t_vnops.c,v 1.21 2011/03/03 10:57:30 pooka Exp $	*/
 
 /*-
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -202,9 +202,6 @@
 	char pb1[MAXPATHLEN], pb2[MAXPATHLEN], pb3[MAXPATHLEN];
 	struct stat ref, sb;
 
-	//if (FSTYPE_MSDOS(tc))
-		//atf_tc_skip("test fails in some setups, reason unknown");
-
 	if (FSTYPE_RUMPFS(tc))
 		atf_tc_skip("rename not supported by fs");
 
@@ -346,9 +343,6 @@
 	if (FSTYPE_RUMPFS(tc))
 		atf_tc_skip("rename not supported by fs");
 
-	if (FSTYPE_MSDOS(tc))
-		atf_tc_skip("test fails in some setups, reason unknown");
-
 	if (rump_sys_chdir(mp) == -1)
 		atf_tc_fail_errno("chdir mountpoint");
 

Reply via email to