Skip to content

Commit 7dc388b

Browse files
committed
Debug
1 parent bb24faa commit 7dc388b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

test/dependencies.jl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,21 +376,32 @@ end
376376
PackageSpec(; name="CMake_jll", version = v"3.24.3")
377377
]
378378
platform = Platform("x86_64", "linux"; libc="musl", cxxstring_abi="cxx11")
379+
@show VERSION
380+
@show VERSION>=v"1.9"
379381
try
382+
@info "" @__LINE__
380383
test_setup_dependencies(prefix, dependencies, platform)
384+
@info "" @__LINE__
381385
catch
386+
@info "" @__LINE__
382387
if VERSION>=v"1.9"
388+
@info "" @__LINE__
383389
# This test is expected to be broken on Julia v1.9+
384390
@test false broken=true
391+
@info "" @__LINE__
385392
else
393+
@info "" @__LINE__
386394
# For previous versions we don't expect errors and we
387395
# want to see them.
388396
rethrow()
397+
@info "" @__LINE__
389398
end
390399
end
400+
@info "" @__LINE__
391401
# The directory contains also executables from CMake dependencies.
392402
# Test will fail if `setup_dependencies` above failed.
393403
@test readdir(joinpath(destdir(dir, platform), "bin")) == ["c_rehash", "cmake", "cpack", "ctest", "openssl"] broken=VERSION>=v"1.9"
404+
@info "" @__LINE__
394405
end
395406
end
396407

0 commit comments

Comments
 (0)