From 5a5f088539c65cfd14b109dfafb53c8a57ca72e6 Mon Sep 17 00:00:00 2001 From: mlelstv Date: Sun, 1 Aug 2010 14:50:54 +0000 Subject: [PATCH] The erroneous error codes described in kern/43616 have been fixed. --- tests/fs/vfs/t_vnops.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/fs/vfs/t_vnops.c b/tests/fs/vfs/t_vnops.c index 489b4336b78e..c95cc08c782f 100644 --- a/tests/fs/vfs/t_vnops.c +++ b/tests/fs/vfs/t_vnops.c @@ -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 @@ rename_dotdot(const atf_tc_t *tc, const char *mp) 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");