git: 095d3f98fb3d - stable/13 - Temporarily skip flaky tset cases under sys.aio.aio_test in CI

Li-Wen Hsu lwhsu at FreeBSD.org
Wed Sep 29 19:38:56 UTC 2021


The branch stable/13 has been updated by lwhsu:

URL: https://cgit.FreeBSD.org/src/commit/?id=095d3f98fb3d907fbd2e5c799bb2988532e9bf63

commit 095d3f98fb3d907fbd2e5c799bb2988532e9bf63
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-29 19:38:35 +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
    
    (cherry picked from commit 0b159faaca08e6cc89abcd29b4b1360f97e18245)
---
 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 b34e7c13f5a4..05351b849a0a 100644
--- a/tests/sys/aio/aio_test.c
+++ b/tests/sys/aio/aio_test.c
@@ -1668,6 +1668,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();
 
@@ -1757,6 +1760,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-all mailing list