Module Name: src
Committed By: pooka
Date: Wed Jul 14 21:44:40 UTC 2010
Modified Files:
src/tests/fs/vfs: t_renamerace.c
Log Message:
xfail test on lfs. It goes badaboom faster than you can find your
multipass. Borrow PR kern/43582 used earlier for rmdirrace, as it
looks pretty much like the same problem.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/fs/vfs/t_renamerace.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.1 src/tests/fs/vfs/t_renamerace.c:1.2
--- src/tests/fs/vfs/t_renamerace.c:1.1 Wed Jul 14 21:39:31 2010
+++ src/tests/fs/vfs/t_renamerace.c Wed Jul 14 21:44:40 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: t_renamerace.c,v 1.1 2010/07/14 21:39:31 pooka Exp $ */
+/* $NetBSD: t_renamerace.c,v 1.2 2010/07/14 21:44:40 pooka Exp $ */
/*
* Modified for rump and atf from a program supplied
@@ -69,6 +69,9 @@
{
pthread_t pt1, pt2;
+ if (FSTYPE_LFS(tc))
+ atf_tc_expect_signal(-1, "PR kern/43582");
+
pthread_create(&pt1, NULL, w1, __UNCONST(mp));
pthread_create(&pt2, NULL, w2, __UNCONST(mp));