mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* bootstraptest/test_objectspace.rb: fix condition.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14489 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fc5c62bef7
commit
020fd204f8
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sat Dec 22 19:52:23 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* bootstraptest/test_objectspace.rb: fix condition.
|
||||||
|
|
||||||
Sat Dec 22 19:17:10 2007 Koichi Sasada <ko1@atdot.net>
|
Sat Dec 22 19:17:10 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* ext/probeprofiler/: removed.
|
* ext/probeprofiler/: removed.
|
||||||
|
|
|
@ -17,7 +17,7 @@ assert_normal_exit %q{
|
||||||
ary.permutation(2) {|x|
|
ary.permutation(2) {|x|
|
||||||
if x == [1,2]
|
if x == [1,2]
|
||||||
ObjectSpace.each_object(String) {|s|
|
ObjectSpace.each_object(String) {|s|
|
||||||
s.clear if s.frozen? && (s.length == 40 || s.length == 80)
|
s.clear if !s.frozen? && (s.length == 40 || s.length == 80)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue