diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-05-17 18:09:10 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-05-17 18:09:10 +0200 |
commit | 53de4b4d9faa9e5fac4b484977817b3b88ebbd3a (patch) | |
tree | a31a53c5cc756dfe3b1d0eb62b7c6fdae0d1a2d4 /testing | |
parent | 09eea1dc47e11bc808f9e02fad67b5032a2128e1 (diff) | |
download | aports-53de4b4d9faa9e5fac4b484977817b3b88ebbd3a.tar.bz2 aports-53de4b4d9faa9e5fac4b484977817b3b88ebbd3a.tar.xz |
testing/libc++: disable tests on armhf for now
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libc++/APKBUILD | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/libc++/APKBUILD b/testing/libc++/APKBUILD index ffa7f868ea..c867dd01b5 100644 --- a/testing/libc++/APKBUILD +++ b/testing/libc++/APKBUILD @@ -26,6 +26,11 @@ builddir="$srcdir" _cxxdir="$srcdir/libcxx-$pkgver.src" _abidir="$srcdir/libcxxabi-$pkgver.src" +# Tests on armhf are too slooow on armhf, disable them for now. +case "$CARCH" in + armhf) options="!check";; +esac + prepare() { ln -s "$_cxxdir" "$srcdir"/libcxx ln -s "$_abidir" "$srcdir"/libcxxabi |