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}; }"
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to