git: 9592b0870c83 - main - tests/aio: Avoid skipping zvol tests
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 Apr 2026 16:50:20 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=9592b0870c83c1e70f162cf16a5f0645895d1d9b
commit 9592b0870c83c1e70f162cf16a5f0645895d1d9b
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2026-04-20 16:16:28 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2026-04-20 16:50:01 +0000
tests/aio: Avoid skipping zvol tests
The underlying bugs which caused them to be flaky are now fixed.
PR: 258766
---
tests/sys/aio/aio_test.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/tests/sys/aio/aio_test.c b/tests/sys/aio/aio_test.c
index 3f07d9df9810..75e48f1b1b37 100644
--- a/tests/sys/aio/aio_test.c
+++ b/tests/sys/aio/aio_test.c
@@ -1933,9 +1933,6 @@ ATF_TC_BODY(vectored_unaligned, tc)
ssize_t len, total_len;
int fd;
- if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
- atf_tc_skip("https://bugs.freebsd.org/258766");
-
ATF_REQUIRE_UNSAFE_AIO();
/*
@@ -2026,8 +2023,6 @@ ATF_TC_HEAD(vectored_zvol_poll, tc)
}
ATF_TC_BODY(vectored_zvol_poll, tc)
{
- if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
- atf_tc_skip("https://bugs.freebsd.org/258766");
aio_zvol_test(poll, NULL, true, atf_tc_get_ident(tc));
}
ATF_TC_CLEANUP(vectored_zvol_poll, tc)