Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Nov 2019 05:34:02 +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: r354878 - head/contrib/netbsd-tests/usr.bin/unifdef
Message-ID:  <201911200534.xAK5Y2xO090462@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Wed Nov 20 05:34:02 2019
New Revision: 354878
URL: https://svnweb.freebsd.org/changeset/base/354878

Log:
  Only skip failing test case in CI.
  
  PR:		242095
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/contrib/netbsd-tests/usr.bin/unifdef/t_basic.sh

Modified: head/contrib/netbsd-tests/usr.bin/unifdef/t_basic.sh
==============================================================================
--- head/contrib/netbsd-tests/usr.bin/unifdef/t_basic.sh	Wed Nov 20 05:30:31 2019	(r354877)
+++ head/contrib/netbsd-tests/usr.bin/unifdef/t_basic.sh	Wed Nov 20 05:34:02 2019	(r354878)
@@ -35,7 +35,9 @@ basic_head() {
 }
 
 basic_body() {
-	atf_skip "https://bugs.freebsd.org/242095"
+	if [ "$(atf_config_get ci false)" = "true" ]; then
+		atf_skip "https://bugs.freebsd.org/242095"
+	fi
 
 	atf_check -s ignore -o file:$(atf_get_srcdir)/d_basic.out \
 		-x "unifdef -U__FreeBSD__ $(atf_get_srcdir)/d_basic.in"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911200534.xAK5Y2xO090462>