diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2026-04-20 16:16:28 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2026-04-20 16:50:01 +0000 |
| commit | 9592b0870c83c1e70f162cf16a5f0645895d1d9b (patch) | |
| tree | ba02d47a5ce65d14bd4147530b1d56ca410d1ade | |
| parent | 91f03cde6604fdb940f30d81e4860118ee07f4b3 (diff) | |
tests/aio: Avoid skipping zvol tests
The underlying bugs which caused them to be flaky are now fixed.
PR: 258766
| -rw-r--r-- | tests/sys/aio/aio_test.c | 5 |
1 files changed, 0 insertions, 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) |
