svn commit: r389872 - head/lang/yabasic

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Jun 16 23:02:08 UTC 2015


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


More information about the svn-ports-all mailing list