Module Name: src
Committed By: pooka
Date: Fri Jul 16 19:16:42 UTC 2010
Modified Files:
src/tests/fs/vfs: t_renamerace.c t_vnops.c
Log Message:
Some of the msdosfs tests are killed by SSP due to stack limit
being exceeded. I cannot figure out what is going on by code
reading, nor repeat this either on my desktop or in qemu, so skip
those tests for msdosfs until I can get to the bottom of it.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/tests/fs/vfs/t_renamerace.c
cvs rdiff -u -r1.2 -r1.3 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.7 src/tests/fs/vfs/t_renamerace.c:1.8
--- src/tests/fs/vfs/t_renamerace.c:1.7 Fri Jul 16 14:14:27 2010
+++ src/tests/fs/vfs/t_renamerace.c Fri Jul 16 19:16:41 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: t_renamerace.c,v 1.7 2010/07/16 14:14:27 pooka Exp $ */
+/* $NetBSD: t_renamerace.c,v 1.8 2010/07/16 19:16:41 pooka Exp $ */
/*
* Modified for rump and atf from a program supplied
@@ -90,6 +90,9 @@
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");
+
pthread_create(&pt1, NULL, w1, __UNCONST(mp));
pthread_create(&pt2, NULL, w2, __UNCONST(mp));
Index: src/tests/fs/vfs/t_vnops.c
diff -u src/tests/fs/vfs/t_vnops.c:1.2 src/tests/fs/vfs/t_vnops.c:1.3
--- src/tests/fs/vfs/t_vnops.c:1.2 Wed Jul 14 20:45:48 2010
+++ src/tests/fs/vfs/t_vnops.c Fri Jul 16 19:16:41 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: t_vnops.c,v 1.2 2010/07/14 20:45:48 pooka Exp $ */
+/* $NetBSD: t_vnops.c,v 1.3 2010/07/16 19:16:41 pooka Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@@ -168,6 +168,9 @@
char pb1[MAXPATHLEN], pb2[MAXPATHLEN], pb3[MAXPATHLEN];
struct stat ref;
+ if (FSTYPE_MSDOS(tc))
+ atf_tc_skip("test fails in some setups, reason unknown");
+
USES_DIRS;
md(pb1, mp, "dir1");
@@ -285,6 +288,9 @@
struct stat sb;
ino_t f1ino, f2ino;
+ 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");