From dccd37ae5bb8d291e2cb0d4542d19f191d2a072d Mon Sep 17 00:00:00 2001 From: Francesco Colista Date: Mon, 5 Oct 2020 06:30:19 +0000 Subject: testing/sqlite-replication: disable test on x86 Test on x86 segfaults with this error: Time: cachespill.test 21 ms Time: capi2.test 26 ms make: *** [Makefile:1265: tcltest] Segmentation fault (core dumped) Disabling test for now. --- testing/sqlite-replication/APKBUILD | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testing/sqlite-replication/APKBUILD b/testing/sqlite-replication/APKBUILD index bb9960cd558..1e30be241b8 100644 --- a/testing/sqlite-replication/APKBUILD +++ b/testing/sqlite-replication/APKBUILD @@ -28,7 +28,9 @@ build() { } check() { - make test + if ! [ $CARCH = "x86" ]; then + make test + fi } package() { -- cgit v1.2.3