summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-07 15:49:11 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-05-07 15:49:11 +0000
commitb494603551d1a6c8fbc56ba90a35451e84af4d2e (patch)
treec17473bfa180f1a46eb2cf3b2e7ba31ec934bf2f /test
parentde94db5d61dddfada92dd07a2c1885d79c74e751 (diff)
merge revision(s) r44619:
test_gc.rb: relax assertion * test/ruby/test_gc.rb (test_profiler_total_time): GC time may be shorter than the timer resolution. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@45866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_gc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_gc.rb b/test/ruby/test_gc.rb
index c644aa5d9a..402d560bff 100644
--- a/test/ruby/test_gc.rb
+++ b/test/ruby/test_gc.rb
@@ -244,7 +244,7 @@ class TestGc < Test::Unit::TestCase
GC::Profiler.clear
GC.start
- assert_operator(GC::Profiler.total_time, :>, 0)
+ assert_operator(GC::Profiler.total_time, :>=, 0)
ensure
GC::Profiler.disable
end