Skip to content

Commit dbcdf73

Browse files
add interactive pool size to Base.runtests report (#57215)
1 parent 162cfb3 commit dbcdf73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ cd(@__DIR__) do
120120
Running parallel tests with:
121121
getpid() = $(getpid())
122122
nworkers() = $(nworkers())
123-
nthreads() = $(Threads.threadpoolsize())
123+
nthreads(:interactive) = $(Threads.threadpoolsize(:interactive))
124+
nthreads(:default) = $(Threads.threadpoolsize(:default))
124125
Sys.CPU_THREADS = $(Sys.CPU_THREADS)
125126
Sys.total_memory() = $(Base.format_bytes(Sys.total_memory()))
126127
Sys.free_memory() = $(Base.format_bytes(Sys.free_memory()))

0 commit comments

Comments
 (0)