diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-24 09:15:33 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-03-24 09:15:33 +0900 |
| commit | e2da53c60df4da0c37a04b6659a85eb849e0a478 (patch) | |
| tree | 9b140f91fbee614522c148f99a3c0397fb61e1b5 /test/assert.rb | |
| parent | 75eed54bbaa1ce0389f438490c723ff52ae9402b (diff) | |
| parent | db5d78e229ff96367fcb0b2ca2ab45ddbf566955 (diff) | |
| download | mruby-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/assert.rb')
| -rw-r--r-- | test/assert.rb | 2 |
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") |
