From bbdbc6d2da76b5491b5e63c7db6db62c9c2a9238 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Sun, 7 May 2023 19:22:00 +0200 Subject: [PATCH] community/chez-scheme: only run tests on x86_64 See https://github.com/cisco/ChezScheme/issues/695 --- community/chez-scheme/APKBUILD | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/community/chez-scheme/APKBUILD b/community/chez-scheme/APKBUILD index aa16d0810c5..98f3cc26398 100644 --- a/community/chez-scheme/APKBUILD +++ b/community/chez-scheme/APKBUILD @@ -24,6 +24,15 @@ source="https://github.com/cisco/ChezScheme/releases/download/v$pkgver/csv$pkgve x86_64bit-time_t.patch" builddir="$srcdir"/csv$pkgver +# Only run the testsuite on x86_64. +# +# x86: https://github.com/cisco/ChezScheme/issues/695 +# armhf: doesn't seem to support test status reporting. +case "$CARCH" in +x86) options="!check" ;; +armhf) options="!check" ;; +esac + case "$CARCH" in x86) _chez_host=ti3le ;; x86_64) _chez_host=ta6le ;;