diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-17 07:02:07 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-17 07:02:07 +0800 |
commit | 43c3791acf126bcdd4734bc339a165b46beb888a (patch) | |
tree | 4a28aeb84518530d57f0adf900f645efd605939d | |
parent | c2e624c376027cbc3b912e8bb70fc0f90bd76bcd (diff) | |
download | freebsd-ports-gnome-43c3791acf126bcdd4734bc339a165b46beb888a.tar.gz freebsd-ports-gnome-43c3791acf126bcdd4734bc339a165b46beb888a.tar.zst freebsd-ports-gnome-43c3791acf126bcdd4734bc339a165b46beb888a.zip |
- 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
-rw-r--r-- | lang/yabasic/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/yabasic/Makefile b/lang/yabasic/Makefile index 69815c2245e8..0c6871e817a2 100644 --- a/lang/yabasic/Makefile +++ b/lang/yabasic/Makefile @@ -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 |