Skip to content

Commit 88be31d

Browse files
committed
Fix
1 parent 9447bf2 commit 88be31d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/ParallelTestRunner.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,9 @@ function runtest(f, name, init_code, start_time)
332332
$f
333333
end
334334
end
335-
(; testset=stats.value, stats.time, stats.bytes, stats.gctime, stats.compile_time)
335+
336+
compile_time = @static VERSION >= 1.11 ? stats.compile_time : 0.0
337+
(; testset=stats.value, stats.time, stats.bytes, stats.gctime, compile_time)
336338
end
337339

338340
# process results

0 commit comments

Comments
 (0)