Author: lwhsu
Date: Wed Mar 11 12:43:54 2020
New Revision: 358887
URL: https://svnweb.freebsd.org/changeset/base/358887

Log:
  Temporarily skip 2 failing tests after llvm10 import
  
  PR:           244732
  Sponsored by: The FreeBSD Foundation

Modified:
  head/lib/libproc/tests/proc_test.c
  head/lib/msun/tests/ctrig_test.c

Modified: head/lib/libproc/tests/proc_test.c
==============================================================================
--- head/lib/libproc/tests/proc_test.c  Wed Mar 11 10:42:05 2020        
(r358886)
+++ head/lib/libproc/tests/proc_test.c  Wed Mar 11 12:43:54 2020        
(r358887)
@@ -270,6 +270,9 @@ ATF_TC_BODY(symbol_lookup, tc)
        u_long saved;
        int error;
 
+       if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+               atf_tc_skip("https://bugs.freebsd.org/244732";);
+
        phdl = start_prog(tc, false);
 
        error = proc_name2sym(phdl, target_prog_file, "main", &main_sym, NULL);

Modified: head/lib/msun/tests/ctrig_test.c
==============================================================================
--- head/lib/msun/tests/ctrig_test.c    Wed Mar 11 10:42:05 2020        
(r358886)
+++ head/lib/msun/tests/ctrig_test.c    Wed Mar 11 12:43:54 2020        
(r358887)
@@ -248,6 +248,9 @@ ATF_TC_BODY(test_inf_inputs, tc)
        long double complex z, c, s;
        unsigned i;
 
+       if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+               atf_tc_skip("https://bugs.freebsd.org/244732";);
+
        /*
         * IN           CSINH           CCOSH           CTANH
         * Inf,Inf      +-Inf,NaN inval +-Inf,NaN inval 1,+-0
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to