Merge pull request #1927 from take-cheeze/count_crash

Count crashed tests in total tests count.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2014-03-24 09:15:33 +09:00
+1 -1
View File
@@ -218,7 +218,7 @@ def report()
puts msg
end
$total_test = $ok_test.+($ko_test)
$total_test = $ok_test.+($ko_test).+($kill_test)
t_print("Total: #{$total_test}\n")
t_print(" OK: #{$ok_test}\n")