Skip to content

Commit c869685

Browse files
committed
test: use BLAS.libblastrampoline
`Base.libblas_name` will be removed. xref: JuliaLang/julia#50699
1 parent 9bc292d commit c869685

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/blas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ end
776776
# Make sure we can use `Base.libblas_name`. Avoid causing
777777
# https://github.com/JuliaLang/julia/issues/48427 again.
778778
@testset "libblas_name" begin
779-
dot_sym = dlsym(dlopen(Base.libblas_name), "cblas_ddot" * (Sys.WORD_SIZE == 64 ? "64_" : ""))
779+
dot_sym = dlsym(dlopen(BLAS.libblastrampoline), "cblas_ddot" * (Sys.WORD_SIZE == 64 ? "64_" : ""))
780780
@test 23.0 === @ccall $(dot_sym)(2::Int, [2.0, 3.0]::Ref{Cdouble}, 1::Int, [4.0, 5.0]::Ref{Cdouble}, 1::Int)::Cdouble
781781
end
782782

0 commit comments

Comments
 (0)