Mon Jul 3 11:08:29 2017 UTC ()
Do not run tests that segfault on NetBSD. Add upstream bug report URL.


(wiz)
diff -r1.25 -r1.26 pkgsrc/devel/py-cffi/Makefile

cvs diff -r1.25 -r1.26 pkgsrc/devel/py-cffi/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/py-cffi/Makefile 2017/04/05 15:54:26 1.25
+++ pkgsrc/devel/py-cffi/Makefile 2017/07/03 11:08:29 1.26
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1# $NetBSD: Makefile,v 1.25 2017/04/05 15:54:26 wiz Exp $ 1# $NetBSD: Makefile,v 1.26 2017/07/03 11:08:29 wiz Exp $
2 2
3DISTNAME= cffi-1.10.0 3DISTNAME= cffi-1.10.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= devel 5CATEGORIES= devel
6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cffi/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=c/cffi/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://pypi.python.org/pypi/cffi/ 9HOMEPAGE= https://pypi.python.org/pypi/cffi/
10COMMENT= Foreign Function Interface for Python calling C code 10COMMENT= Foreign Function Interface for Python calling C code
11LICENSE= mit 11LICENSE= mit
12 12
13USE_TOOLS+= pkg-config 13USE_TOOLS+= pkg-config
 14USE_LANGUAGES= c c++
14 15
15DEPENDS+= ${PYPKGPREFIX}-cparser-[0-9]*:../../devel/py-cparser 16DEPENDS+= ${PYPKGPREFIX}-cparser-[0-9]*:../../devel/py-cparser
16BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test 17BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
17 18
18# needs 'make install' before running the tests 19# needs 'make install' before running the tests
19# segfault in c/test_c.py::test_callback 20# many segfaults and 6 other test failures
20# https://bitbucket.org/cffi/cffi/issues/303/cffi-191-segmentation-fault-during-self 21# https://bitbucket.org/cffi/cffi/issues/321/cffi-191-segmentation-fault-during-self
21# probably problem in libffi 
22do-test: 22do-test:
23 cd ${WRKSRC} && py.test-${PYVERSSUFFIX} -v 23 cd ${WRKSRC} && py.test-${PYVERSSUFFIX} -v -k "not test_callback and not test_a_lot_of_callbacks and not test_wchar and not test_errno_callback and not test_functionptr_simple and not test_functionptr_voidptr_return and not test_functionptr_intptr_return and not test_functionptr_void_return and not test_cast_functionptr_and_int and not test_structptr_argument and not test_array_argument_as_list and not test_array_of_func_ptr and not test_function_pointer and not test_access_callback and not test_win32_calling_convention_0 and not test_ffi_callback and not test_array_length_from_constant and not test_some_integer_type_for_issue73 and not test_macro_var_callback"
24 24
25.include "../../devel/libffi/buildlink3.mk" 25.include "../../devel/libffi/buildlink3.mk"
26.include "../../lang/python/egg.mk" 26.include "../../lang/python/egg.mk"
27.include "../../mk/bsd.pkg.mk" 27.include "../../mk/bsd.pkg.mk"