diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-02-05 22:07:45 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-02-05 22:41:22 +0000 |
commit | 08227c58b74ae1f2068f55652638781eb7f779c1 (patch) | |
tree | 70f1324ca145f9cadf1d0bac2d43edc4b4b09079 /testing | |
parent | 84aaa68d9ec9c777a0741b7a7e87837fd7afafb3 (diff) | |
download | aports-08227c58b74ae1f2068f55652638781eb7f779c1.tar.bz2 aports-08227c58b74ae1f2068f55652638781eb7f779c1.tar.xz |
testing/ndpi: disable on armhf and s390x
tests fails on armhf without any apparent reason and tests hangs on
s390x. Disable.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/ndpi/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/ndpi/APKBUILD b/testing/ndpi/APKBUILD index 6708c56537..4fe219f836 100644 --- a/testing/ndpi/APKBUILD +++ b/testing/ndpi/APKBUILD @@ -5,14 +5,14 @@ pkgver=2.2 pkgrel=1 pkgdesc="Open Source Deep Packet Inspection Software Toolkit" url="https://github.com/ntop/nDPI" -arch="all" +# armhf test fail without apparent cause +# s390x test hangs +arch="all !armhf !s390x" license="GPL-3.0" makedepends="autoconf automake libpcap-dev libtool" subpackages="$pkgname-dev" source="$pkgname-$pkgver.tar.gz::https://github.com/ntop/nDPI/archive/$pkgver.tar.gz" builddir="$srcdir"/$_pkgreal-$pkgver -# armhf test fail without apparent cause -if [ "$CARCH" = "armhf" ]; then options="!check"; fi prepare() { cd "$builddir" |