diff options
author | Carlo Landmeter <clandmeter@alpinelinux.org> | 2018-11-16 14:47:39 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2018-11-16 14:47:39 +0000 |
commit | d40d3114ab3f75c7488d20c35f0c81fcfdf7f970 (patch) | |
tree | 99a2ef56498c2a77b1f41dc6d7dc667542d4e32f /community/lua-copas | |
parent | a2cd61952a23403d9569054aaa0f11a4a4bbec3d (diff) | |
download | aports-d40d3114ab3f75c7488d20c35f0c81fcfdf7f970.tar.bz2 aports-d40d3114ab3f75c7488d20c35f0c81fcfdf7f970.tar.xz |
community/lua-copas: disable tests on armv7
Diffstat (limited to 'community/lua-copas')
-rw-r--r-- | community/lua-copas/APKBUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/community/lua-copas/APKBUILD b/community/lua-copas/APKBUILD index e7fdd3aad4..e9fc5a6989 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 |