svn commit: r351739 - head/tests/sys/sys

Li-Wen Hsu lwhsu at FreeBSD.org
Tue Sep 3 10:49:13 UTC 2019


Author: lwhsu
Date: Tue Sep  3 10:49:13 2019
New Revision: 351739
URL: https://svnweb.freebsd.org/changeset/base/351739

Log:
  Temporarily skip sys.sys.qmath_test.qdivq_s64q in CI because it is unstable
  
  PR:		240219
  Discussed with:	trasz
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/tests/sys/sys/qmath_test.c

Modified: head/tests/sys/sys/qmath_test.c
==============================================================================
--- head/tests/sys/sys/qmath_test.c	Tue Sep  3 07:09:04 2019	(r351738)
+++ head/tests/sys/sys/qmath_test.c	Tue Sep  3 10:49:13 2019	(r351739)
@@ -275,6 +275,10 @@ ATF_TC_BODY(qdivq_s64q, tc)
 	double a_dbl, b_dbl, r_dbl, maxe_dbl, delta_dbl;
 	int error;
 
+	if (atf_tc_get_config_var_as_bool_wd(tc, "ci", false))
+		atf_tc_skip("https://bugs.freebsd.org/240219");
+
+
 	srandomdev();
 
 	for (int i = 0; i < 10; i++) {


More information about the svn-src-head mailing list