Temporarily skip flaky tset cases under sys.aio.aio_test in CI
- sys.aio.aio_test.vectored_unaligned - sys.aio.aio_test.vectored_zvol_poll PR: 258766 Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
dc91a9715f
commit
0b159faaca
@ -1813,6 +1813,9 @@ 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_KERNEL_MODULE("aio");
|
||||
ATF_REQUIRE_UNSAFE_AIO();
|
||||
|
||||
@ -1902,6 +1905,8 @@ 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_CLEANUP(vectored_zvol_poll, tc)
|
||||
|
Loading…
Reference in New Issue
Block a user