Module Name:    src
Committed By:   martin
Date:           Mon May 30 13:10:38 UTC 2011

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

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


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 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.23 src/tests/fs/vfs/t_vnops.c:1.24
--- src/tests/fs/vfs/t_vnops.c:1.23	Fri Apr  1 17:40:54 2011
+++ src/tests/fs/vfs/t_vnops.c	Mon May 30 13:10:38 2011
@@ -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");
 

Reply via email to