Date: Friday, December 9, 2022 @ 23:30:50
Author: arojas
Revision: 1357295
Reenable more tests
Modified:
julia/trunk/PKGBUILD
----------+
PKGBUILD | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2022-12-09 22:55:55 UTC (rev 1357294)
+++ PKGBUILD 2022-12-09 23:30:50 UTC (rev 1357295)
@@ -60,7 +60,7 @@
# Fix test failures due to using system blas
sed -e 's|0.22314355f0 + 3.1415927f0im|0.22314355f0 - 3.1415927f0im|' -i
stdlib/LinearAlgebra/test/lu.jl
sed -e 's|\$Int|Int32|' -i stdlib/LinearAlgebra/test/lu.jl
-# Supress suitesparse version mismatch warnings
+# Fix warnings with suitesparse 6
cd stdlib/srccache
tar -xzf SuiteSparse-f63732c1c6adecb277d8f2981cc8c1883c321bcc.tar.gz
patch -d JuliaSparse-SuiteSparse.jl-f63732c -p1 <
"$srcdir"/julia-suitesparse-version-mismatch.patch
@@ -111,14 +111,9 @@
check() {
cd $pkgname-$pkgver/test
- # this is the make testall target, plus the --skip option from
- # travis/appveyor/circleci (one test fails with DNS resolution errors)
- # Also skip tests that check for a hardcoded version number
# TODO: Remove SuiteSparse from skip list in 1.9 (it is downloaded at build
time from a separate repo, not easily patchable)
../julia --check-bounds=yes --startup-file=no ./runtests.jl \
--skip Sockets \
- --skip broadcast \
- --skip Distributed \
--skip nghttp2_jll \
--skip GMP_jll \
--skip LibCURL \
@@ -129,9 +124,7 @@
--skip SuiteSparse_jll \
--skip PCRE2_jll \
--skip LibGit2_jll \
- --skip Zlib_jll \
- --skip NetworkOptions \
- --skip Downloads
+ --skip Zlib_jll
find ../stdlib \( -name \*.cov -o -name \*.mem \) -delete
rm -fr ../stdlib/Artifacts/test/artifacts
}