summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2019-09-29 15:03:46 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2019-09-29 15:03:46 +0200
commitd1f7c2521f9eba51e7211431353df34c7d7181c4 (patch)
treef8440d3456a9cd33a03a1d7997a37785b9264793
parentb49853493be209110ceae4dfcee96e91a82f693d (diff)
downloadpackages-d1f7c2521f9eba51e7211431353df34c7d7181c4.tar.xz
extra/gd: run tests on pentium4, not on other platforms
-rw-r--r--extra/gd/PKGBUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/extra/gd/PKGBUILD b/extra/gd/PKGBUILD
index 2fcaf6a6..0c2b32a9 100644
--- a/extra/gd/PKGBUILD
+++ b/extra/gd/PKGBUILD
@@ -21,5 +21,8 @@ if [ "${CARCH}" = "pentium4" ]; then
)"
fi
-# for all platforms we disable testing for now
-unset check
+# test suite assumes fpmath=sse when compring test results, disable tests
+# for non-pentium4 builds
+if [ "$CARCH" = 'i486' -o "$CARCH" = 'i686' ]; then
+ unset check
+fi