Date: Wed, 23 Feb 2022 22:28:40 GMT From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: d33158471afb - main - Temporarily skip sys.geom.class.multipath.failloop.failloop in CI Message-ID: <202202232228.21NMSefB064629@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by lwhsu: URL: https://cgit.FreeBSD.org/src/commit/?id=d33158471afb6156886642cf2a06f79f40cd2461 commit d33158471afb6156886642cf2a06f79f40cd2461 Author: Li-Wen Hsu <lwhsu@FreeBSD.org> AuthorDate: 2022-02-23 22:28:24 +0000 Commit: Li-Wen Hsu <lwhsu@FreeBSD.org> CommitDate: 2022-02-23 22:28:24 +0000 Temporarily skip sys.geom.class.multipath.failloop.failloop in CI This test case uses `dtrace -c` but it has some issues at the moment so disable it until dtrace fixed. From markj: This is the CTF type ID limit which has come up quite a few times lately. It'll be fixed with the introduction of CTFv3. PR: 258763 Sponsored by: The FreeBSD Foundation --- tests/sys/geom/class/multipath/failloop.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/sys/geom/class/multipath/failloop.sh b/tests/sys/geom/class/multipath/failloop.sh index 0f0202bb8b01..48006d6b10da 100755 --- a/tests/sys/geom/class/multipath/failloop.sh +++ b/tests/sys/geom/class/multipath/failloop.sh @@ -36,6 +36,10 @@ failloop_head() } failloop_body() { + if [ "$(atf_config_get ci false)" = "true" ]; then + atf_skip "https://bugs.freebsd.org/258763" + fi + sysctl -n kern.geom.notaste > kern.geom.notaste.txt load_gnop load_gmultipath
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202232228.21NMSefB064629>