svn commit: r389888 - branches/2015Q2/lang/yabasic

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Jun 16 23:47:51 UTC 2015


Author: amdmi3
Date: Tue Jun 16 23:47:50 2015
New Revision: 389888
URL: https://svnweb.freebsd.org/changeset/ports/389888

Log:
  MFH: r389872
  
  - 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
  
  Approved by:	ports-secteam (delphij)

Modified:
  branches/2015Q2/lang/yabasic/Makefile
Directory Properties:
  branches/2015Q2/   (props changed)

Modified: branches/2015Q2/lang/yabasic/Makefile
==============================================================================
--- branches/2015Q2/lang/yabasic/Makefile	Tue Jun 16 23:43:18 2015	(r389887)
+++ branches/2015Q2/lang/yabasic/Makefile	Tue Jun 16 23:47:50 2015	(r389888)
@@ -20,6 +20,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@ -DUNIX|g" ${WRKSRC}/Makefile.in
 


More information about the svn-ports-branches mailing list