diff options
author | Hiroo Ono <hiroo.ono+freebsd@gmail.com> | 2025-05-14 19:27:31 +0200 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2025-05-18 18:42:44 +0200 |
commit | 7c2e16a817f9591ba3d11416372ce79c501b80a9 (patch) | |
tree | 3904f888fc50ba9acbcf73641f66a08262589a23 /lang/julia/files/patch-test_errorshow.jl | |
parent | math/lcalc: drop maintainership (diff) |
lang/julia: update to 1.10.5
Release notes at
https://discourse.julialang.org/t/julia-v1-10-5-has-been-released/118720
Also:
- reorganize some lines to pet portlint
- regenerate the patches
- don’t depend on suitesparse-config but on UMFPACK (including CHOLMOD) and SPQR
- replace mbedtls2 by mbedtls3 and remove deprecation
- allow to upgrade gmp and mpfr from Makefile
- fix USE_LDCONFIG
- apply the patch from PR 286169
- add a pkg-message about certificate error.
PR: 281237 + 286169
Reported by: Hiroo Ono <hiroo.ono+freebsd (at) gmail.com> and Trond Endrestøl <Trond.Endrestol (at) ximalas.info>
Diffstat (limited to 'lang/julia/files/patch-test_errorshow.jl')
-rw-r--r-- | lang/julia/files/patch-test_errorshow.jl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lang/julia/files/patch-test_errorshow.jl b/lang/julia/files/patch-test_errorshow.jl new file mode 100644 index 000000000000..a11ca351aa04 --- /dev/null +++ b/lang/julia/files/patch-test_errorshow.jl @@ -0,0 +1,18 @@ +--- test/errorshow.jl.orig 2024-08-27 21:19:31 UTC ++++ test/errorshow.jl +@@ -713,6 +713,7 @@ backtrace() + backtrace() + + # issue #28442 ++if false + @testset "Long stacktrace printing" begin + f28442(c) = g28442(c + 1) + g28442(c) = c > 10000 ? (return backtrace()) : f28442(c+1) +@@ -726,6 +727,7 @@ backtrace() + @test occursin("f28442", output[5]) + @test occursin("the last 2 lines are repeated 5000 more times", output[7]) + @test lstrip(output[8])[1:7] == "[10003]" ++end + end + + @testset "Line number correction" begin |