Skip to content

Commit e37ba6b

Browse files
committed
Fix naming in tests
1 parent 6eee308 commit e37ba6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/direct.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,13 @@ if MKL_jll.is_available() && Sys.ARCH == :x86_64
250250
@test libs[1].complex_retstyle == LBT_COMPLEX_RETSTYLE_ARGUMENT
251251
end
252252

253-
# Call cblas_zdotu_sub, asserting that it does not try to call a forwardless-symbol
253+
# Call cblas_zdotc_sub, asserting that it does not try to call a forwardless-symbol
254254
empty!(stacktraces)
255255
A = ComplexF64[3.1 + 1.4im, -1.0 + 1.2im]
256256
B = ComplexF64[1.3 + 0.3im, -1.1 + -3.4im]
257257
result = ComplexF64[0]
258-
zdotu_fptr = dlsym(lbt_handle, :cblas_zdotc_sub64_)
259-
ccall(zdotu_fptr, Cvoid, (Int64, Ptr{ComplexF64}, Int64, Ptr{ComplexF64}, Int64, Ptr{ComplexF64}), 2, A, 1, B, 1, result)
258+
zdotc_fptr = dlsym(lbt_handle, :cblas_zdotc_sub64_)
259+
ccall(zdotc_fptr, Cvoid, (Int64, Ptr{ComplexF64}, Int64, Ptr{ComplexF64}, Int64, Ptr{ComplexF64}), 2, A, 1, B, 1, result)
260260
@test result[1] ComplexF64(1.47 + 3.83im)
261261
@test isempty(stacktraces)
262262

0 commit comments

Comments
 (0)