Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Jun 2015 23:02:08 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389872 - head/lang/yabasic
Message-ID:  <201506162302.t5GN28rM059919@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Tue Jun 16 23:02:07 2015
New Revision: 389872
URL: https://svnweb.freebsd.org/changeset/ports/389872

Log:
  - Mark BROKEN on < 10.x amd64:
  
  /usr/bin/make  check-TESTS
  Segmentation fault (core dumped)
  FAIL: tests/simple.yab
  Segmentation fault (core dumped)
  FAIL: tests/grammar.yab
  Segmentation fault (core dumped)
  FAIL: tests/io.yab
  Segmentation fault (core dumped)
  FAIL: tests/bugs.yab
  Segmentation fault (core dumped)
  FAIL: tests/break.yab
  ===================
  5 of 5 tests failed
  ===================
  *** [check-TESTS] Error code 1
  
  MFH:		2015Q2

Modified:
  head/lang/yabasic/Makefile

Modified: head/lang/yabasic/Makefile
==============================================================================
--- head/lang/yabasic/Makefile	Tue Jun 16 23:00:02 2015	(r389871)
+++ head/lang/yabasic/Makefile	Tue Jun 16 23:02:07 2015	(r389872)
@@ -23,6 +23,10 @@ OPTIONS_DEFINE=	DOCS
 
 .include <bsd.port.options.mk>
 
+.if ${ARCH} == "amd64" && ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
+BROKEN=		all tests end up with segfault on FreeBSD < 10.x amd64
+.endif
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|-DUNIX|@X_CFLAGS@ &|' ${WRKSRC}/Makefile.in
 	@${REINPLACE_CMD} -e '/Intrinsic\.h/d' ${WRKSRC}/yabasic.h



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