diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-04-29 00:38:03 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-04-29 00:38:03 +0200 |
commit | 2c673038aab40dfef14d77ecf3d5696b9e16a154 (patch) | |
tree | 9807a077dc1e4bb83f1a84865efd7770cdf31025 /testing/nqp/APKBUILD | |
parent | 0e6b66fe398f3c1f5e9e2cd44ba6562c645ceb77 (diff) | |
download | aports-2c673038aab40dfef14d77ecf3d5696b9e16a154.tar.bz2 aports-2c673038aab40dfef14d77ecf3d5696b9e16a154.tar.xz |
testing/nqp: disable check on x86
t/hll/06-sprintf.t (Wstat: 0 Tests: 286 Failed: 2)
Failed tests: 111-112
Files=141, Tests=12019, 34 wallclock secs ( 1.16 usr 0.11 sys + 32.61 cusr 1.38 csys = 35.26 CPU)
Result: FAIL
Diffstat (limited to 'testing/nqp/APKBUILD')
-rw-r--r-- | testing/nqp/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testing/nqp/APKBUILD b/testing/nqp/APKBUILD index 256c0c0148..d1e15514ee 100644 --- a/testing/nqp/APKBUILD +++ b/testing/nqp/APKBUILD @@ -5,7 +5,7 @@ pkgver=2018.04 pkgrel=0 pkgdesc="Not Quite Perl" url="https://github.com/perl6/nqp" -arch="all" +arch="all !x86" options="!archcheck" # Arch dependencies are embedded license="Artistic-2.0" depends="moarvm" @@ -15,8 +15,10 @@ subpackages="$pkgname-doc" source="${pkgname}-${pkgver}.tar.gz::https://github.com/perl6/nqp/archive/${pkgver}.tar.gz" builddir="$srcdir"/"$pkgname"-"$pkgver" -# some tests fail on armhf, need to investigate more -[ "$CARCH" = "armhf" ] && options="$options !check" +# FIXME: some tests fail on armhf and x86, need to investigate more +case "$CARCH" in + armhf | x86) options="$options !check";; +esac build() { cd "$builddir" |