Skip to content

Commit

Permalink
Ensure greater resilience when dealing with possible testing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Nov 17, 2016
1 parent 548465b commit 39778d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ cd(dirname(@__FILE__)) do
print_with_color(:white, rpad("Test:",name_align," "), " | ")
print_with_color(:white, "Total time (s): | GC time (s): | Percent in gc: | Allocated (MB): | RSS (MB):\n")
for res in results
if !isa(res[2][1], RemoteException)
if !isa(res[2][1], Exception)
print_with_color(:white, rpad("$(res[1])",name_align," "), " | ")
time_str = @sprintf("%7.2f",res[2][2])
print_with_color(:white, rpad(time_str,elapsed_align," "), " | ")
Expand Down

0 comments on commit 39778d8

Please sign in to comment.