Module Name: src
Committed By: riastradh
Date: Wed Jun 16 23:58:07 UTC 2021
Modified Files:
src/tests/fs/vfs: t_renamerace.c
Log Message:
tests/fs/vfs: Mark udf_renamerace_cycle flaky, PR kern/56253.
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 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.40 src/tests/fs/vfs/t_renamerace.c:1.41
--- src/tests/fs/vfs/t_renamerace.c:1.40 Sat Sep 5 02:55:39 2020
+++ src/tests/fs/vfs/t_renamerace.c Wed Jun 16 23:58:07 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: t_renamerace.c,v 1.40 2020/09/05 02:55:39 riastradh Exp $ */
+/* $NetBSD: t_renamerace.c,v 1.41 2021/06/16 23:58:07 riastradh Exp $ */
/*
* Modified for rump and atf from a program supplied
@@ -254,6 +254,8 @@ renamerace_cycle(const atf_tc_t *tc, con
atf_tc_expect_fail("assertion \"dfd\" failed");
if (FSTYPE_NFS(tc))
atf_tc_expect_fail("mkdir fails with ESTALE");
+ if (FSTYPE_UDF(tc))
+ atf_tc_expect_fail("sometimes fails with ENOSPC, PR kern/56253");
/* XXX: msdosfs also sometimes hangs */
if (FSTYPE_MSDOS(tc))
@@ -277,6 +279,9 @@ renamerace_cycle(const atf_tc_t *tc, con
alarm(0);
RL(rump_sys_chdir("/"));
+ if (FSTYPE_UDF(tc))
+ atf_tc_fail("PR kern/56253 did not trigger this time");
+
/*
* Doesn't always trigger when run on a slow backend
* (i.e. not on tmpfs/mfs). So do the usual kludge.