File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -927,8 +927,10 @@ function retest(@nospecialize(args::ArgType...);
927
927
928
928
print_overall () =
929
929
if module_summary (verbose, many)
930
- @assert endswith (module_ts. description, ' :' )
931
- module_ts. description = chop (module_ts. description, tail= 1 )
930
+ # @assert endswith(module_ts.description, ':')
931
+ if endswith (module_ts. description, ' :' )
932
+ module_ts. description = chop (module_ts. description, tail= 1 )
933
+ end
932
934
clear_line ()
933
935
Testset. print_test_results (module_ts, format,
934
936
bold= true , hasbroken= hasbroken,
@@ -959,7 +961,8 @@ function retest(@nospecialize(args::ArgType...);
959
961
gotprinted = true
960
962
961
963
if rts === nothing
962
- errored || print_overall ()
964
+ errored && println () # to have empty line after reported error
965
+ print_overall ()
963
966
finito = true
964
967
return
965
968
end
@@ -977,7 +980,9 @@ function retest(@nospecialize(args::ArgType...);
977
980
)
978
981
end
979
982
if rts. anynonpass
980
- print_overall ()
983
+ # TODO : can we print_overall() here,
984
+ # without having the wrong numbers?
985
+ # print_overall()
981
986
println ()
982
987
Testset. print_test_errors (rts)
983
988
errored = true
You can’t perform that action at this time.
0 commit comments