@@ -32,6 +32,7 @@ if do_help
32
32
33
33
--help Show this text.
34
34
--list List all available tests.
35
+ --verbose Print more information during testing.
35
36
--quickfail Fail the entire run as soon as a single test errored.
36
37
--jobs=N Launch `N` processes to perform tests (default: Sys.CPU_THREADS).
37
38
--gpu=0,1,... Comma-separated list of GPUs to use (default: 0)
@@ -42,6 +43,7 @@ if do_help
42
43
end
43
44
set_jobs, jobs = extract_flag! (ARGS , " --jobs" ; typ= Int)
44
45
do_sanitize, sanitize_tool = extract_flag! (ARGS , " --sanitize" , " memcheck" )
46
+ do_verbose, _ = extract_flag! (ARGS , " --verbose" )
45
47
do_quickfail, _ = extract_flag! (ARGS , " --quickfail" )
46
48
do_gpu_list, gpu_list = extract_flag! (ARGS , " --gpu" )
47
49
do_list, _ = extract_flag! (ARGS , " --list" )
@@ -283,7 +285,7 @@ function print_testworker_stats(test, wrkr, resp)
283
285
end
284
286
end
285
287
global print_testworker_started = (name, wrkr)-> begin
286
- if do_sanitize
288
+ if do_sanitize || do_verbose
287
289
lock (print_lock)
288
290
try
289
291
printstyled (name, color= :white )
0 commit comments