diff options
author | Andy Postnikov <apostnikov@gmail.com> | 2018-03-30 01:56:40 +0300 |
---|---|---|
committer | Andy Postnikov <apostnikov@gmail.com> | 2018-03-30 02:15:10 +0300 |
commit | 4e22f77d51a99090eb7969921ca0ac9d6743b8b6 (patch) | |
tree | 8fd9b22a096e88444eb042dae0be539075343b8a | |
parent | 8ff33d3869268f1e4a46bcedb6a2e64d91ca3e2d (diff) | |
download | aports-4e22f77d51a99090eb7969921ca0ac9d6743b8b6.tar.bz2 aports-4e22f77d51a99090eb7969921ca0ac9d6743b8b6.tar.xz |
testing/php7-stats: exclude broken test for aarch64 and ppc64le
-rw-r--r-- | testing/php7-stats/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testing/php7-stats/APKBUILD b/testing/php7-stats/APKBUILD index fb2ec1021f..429f0cc550 100644 --- a/testing/php7-stats/APKBUILD +++ b/testing/php7-stats/APKBUILD @@ -3,7 +3,7 @@ pkgname=php7-stats _pkgreal=stats pkgver=2.0.3 -pkgrel=2 +pkgrel=3 pkgdesc="Extension that provides few dozens routines for statistical computation." url="http://pecl.php.net/package/$_pkgreal" arch="all" @@ -22,6 +22,10 @@ build() { check() { cd "$builddir" + case "$CARCH" in + # Remove test fail https://bugs.php.net/bug.php?id=76163 + aarch64 | ppc64le) rm tests/stats_stat_correlation.phpt + esac make NO_INTERACTION=1 REPORT_EXIT_STATUS=1 test } |