summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2014-03-24 09:15:33 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2014-03-24 09:15:33 +0900
commite2da53c60df4da0c37a04b6659a85eb849e0a478 (patch)
tree9b140f91fbee614522c148f99a3c0397fb61e1b5 /test
parent75eed54bbaa1ce0389f438490c723ff52ae9402b (diff)
parentdb5d78e229ff96367fcb0b2ca2ab45ddbf566955 (diff)
downloadmruby-e2da53c60df4da0c37a04b6659a85eb849e0a478.tar.gz
mruby-e2da53c60df4da0c37a04b6659a85eb849e0a478.zip
Merge pull request #1927 from take-cheeze/count_crash
Count crashed tests in total tests count.
Diffstat (limited to 'test')
-rw-r--r--test/assert.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/assert.rb b/test/assert.rb
index 30d27d9ef..de9380dea 100644
--- a/test/assert.rb
+++ b/test/assert.rb
@@ -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")