git: 0b159faaca08 - main - Temporarily skip flaky tset cases under sys.aio.aio_test in CI

Li-Wen Hsu lwhsu at FreeBSD.org
Tue Sep 28 19:33:17 UTC 2021


The branch main has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/src/commit/?id=0b159faaca08e6cc89abcd29b4b1360f97e18245

commit 0b159faaca08e6cc89abcd29b4b1360f97e18245
Author:     Li-Wen Hsu <lwhsu at FreeBSD.org>
AuthorDate: 2021-09-28 19:32:47 +0000
Commit:     Li-Wen Hsu <lwhsu at FreeBSD.org>
CommitDate: 2021-09-28 19:32:47 +0000

    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
---
 tests/sys/aio/aio_test.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/sys/aio/aio_test.c b/tests/sys/aio/aio_test.c
index c3cf1d372e23..44bf85a10241 100644
--- a/tests/sys/aio/aio_test.c
+++ b/tests/sys/aio/aio_test.c
@@ -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)


More information about the dev-commits-src-main mailing list