From d40d3114ab3f75c7488d20c35f0c81fcfdf7f970 Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Fri, 16 Nov 2018 14:47:39 +0000 Subject: [PATCH] community/lua-copas: disable tests on armv7 --- community/lua-copas/APKBUILD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/community/lua-copas/APKBUILD b/community/lua-copas/APKBUILD index e7fdd3aad43..e9fc5a6989f 100644 --- a/community/lua-copas/APKBUILD +++ b/community/lua-copas/APKBUILD @@ -34,6 +34,9 @@ done check() { cd "$builddir" + # tests keep running indefinitely + case "$CARCH" in armv7) return 0;; esac + local lver; for lver in $_luaversions $_luajit; do msg "Testing on lua$lver" make test LUA=lua$lver