Module Name: src
Committed By: pooka
Date: Tue Mar 1 15:33:35 UTC 2011
Modified Files:
src/tests/fs/vfs: t_vnops.c
Log Message:
xfail dir_rmdirdotdot for tmpfs (PR kern/44657)
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 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.18 src/tests/fs/vfs/t_vnops.c:1.19
--- src/tests/fs/vfs/t_vnops.c:1.18 Tue Mar 1 15:04:47 2011
+++ src/tests/fs/vfs/t_vnops.c Tue Mar 1 15:33:35 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: t_vnops.c,v 1.18 2011/03/01 15:04:47 pooka Exp $ */
+/* $NetBSD: t_vnops.c,v 1.19 2011/03/01 15:33:35 pooka Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -175,6 +175,8 @@
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();
}