Date: Wed, 7 Oct 2020 07:23:29 +0000 (UTC) From: Li-Wen Hsu <lwhsu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r366509 - head/tests/sys/capsicum Message-ID: <202010070723.0977NTYS071318@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: lwhsu Date: Wed Oct 7 07:23:29 2020 New Revision: 366509 URL: https://svnweb.freebsd.org/changeset/base/366509 Log: Skip test written in Googltest in the wrapper script This leaves the main test body untouched and only skip running in the CI env, makes doing local test easier while developing. PR: 244165 Sponsored by: The FreeBSD Foundation Modified: head/tests/sys/capsicum/functional.sh Modified: head/tests/sys/capsicum/functional.sh ============================================================================== --- head/tests/sys/capsicum/functional.sh Wed Oct 7 06:16:37 2020 (r366508) +++ head/tests/sys/capsicum/functional.sh Wed Oct 7 07:23:29 2020 (r366509) @@ -59,7 +59,10 @@ add_testcase() if [ "$(atf_config_get ci false)" = "true" ]; then case "${tc_escaped}" in ForkedOpenatTest_WithFlagInCapabilityMode___|OpenatTest__WithFlag) - eval "${tc_escaped}_body() { skip \"http://bugs.freebsd.org/249960\"; }" + eval "${tc_escaped}_body() { skip \"https://bugs.freebsd.org/249960\"; }" + ;; + PipePdfork__WildcardWait) + eval "${tc_escaped}_body() { skip \"https://bugs.freebsd.org/244165\"; }" ;; *) eval "${tc_escaped}_body() { check ${tc}; }"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010070723.0977NTYS071318>