We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c95a57f commit f3608e6Copy full SHA for f3608e6
1 file changed
tests/fs/lfs/t_rfw.c
@@ -1,4 +1,4 @@
1
-/* $NetBSD: t_rfw.c,v 1.5 2025/10/13 00:44:35 perseant Exp $ */
+/* $NetBSD: t_rfw.c,v 1.6 2025/10/13 00:50:48 perseant Exp $ */
2
3
#include <sys/types.h>
4
#include <sys/wait.h>
@@ -80,7 +80,10 @@ void test(int width)
80
/*
81
* Initialize.
82
*/
83
- atf_tc_expect_pass();
+ if (width > 32)
84
+ atf_tc_expect_fail("fsck errors are common in the 64-bit case");
85
+ else
86
+ atf_tc_expect_pass();
87
88
/* Create filesystem, note superblock locations */
89
create_lfs(FSSIZE, FSSIZE, width, 1);
0 commit comments