File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,10 @@ const DISPLAY_FAILED = (
43
43
44
44
const FAIL_FAST = Ref {Bool} (false )
45
45
46
+ const record_passes = OncePerProcess {Bool} () do
47
+ return Base. get_bool_env (" JULIA_TEST_RECORD_PASSES" , false )
48
+ end
49
+
46
50
# -----------------------------------------------------------------------
47
51
48
52
# Backtrace utility functions
@@ -1101,7 +1105,11 @@ struct FailFastError <: Exception end
1101
1105
# For a broken result, simply store the result
1102
1106
record (ts:: DefaultTestSet , t:: Broken ) = (push! (ts. results, t); t)
1103
1107
# 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
1105
1113
1106
1114
# For the other result types, immediately print the error message
1107
1115
# but do not terminate. Print a backtrace.
You can’t perform that action at this time.
0 commit comments