Skip to content

Commit 7d34202

Browse files
add option to record passes
1 parent 31956a1 commit 7d34202

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

stdlib/Test/src/Test.jl

+9-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ const DISPLAY_FAILED = (
4343

4444
const FAIL_FAST = Ref{Bool}(false)
4545

46+
const record_passes = OncePerProcess{Bool}() do
47+
return Base.get_bool_env("JULIA_TEST_RECORD_PASSES", false)
48+
end
49+
4650
#-----------------------------------------------------------------------
4751

4852
# Backtrace utility functions
@@ -1101,7 +1105,11 @@ struct FailFastError <: Exception end
11011105
# For a broken result, simply store the result
11021106
record(ts::DefaultTestSet, t::Broken) = (push!(ts.results, t); t)
11031107
# For a passed result, do not store the result since it uses a lot of memory
1104-
record(ts::DefaultTestSet, t::Pass) = (ts.n_passed += 1; t)
1108+
function record(ts::DefaultTestSet, t::Pass)
1109+
ts.n_passed += 1
1110+
record_passes() && push!(ts.results, t)
1111+
return t
1112+
end
11051113

11061114
# For the other result types, immediately print the error message
11071115
# but do not terminate. Print a backtrace.

0 commit comments

Comments
 (0)