diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2020-10-05 06:30:19 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2020-10-05 06:31:30 +0000 |
commit | dccd37ae5bb8d291e2cb0d4542d19f191d2a072d (patch) | |
tree | 9bccf1fe1fdcdf42a5c0acddf5f907cd67332fca | |
parent | c7d91c8a79fe79d2427d2763fa473bedc6fdff60 (diff) | |
download | aports-dccd37ae5bb8d291e2cb0d4542d19f191d2a072d.tar.gz aports-dccd37ae5bb8d291e2cb0d4542d19f191d2a072d.tar.bz2 aports-dccd37ae5bb8d291e2cb0d4542d19f191d2a072d.tar.xz |
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.
-rw-r--r-- | testing/sqlite-replication/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/sqlite-replication/APKBUILD b/testing/sqlite-replication/APKBUILD index bb9960cd55..1e30be241b 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() { |