* bootstraptest/test_objectspace.rb: skip flozen string.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-12-22 05:18:52 +00:00
Родитель dd6ab4f3d5
Коммит e6f67598e9
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat Dec 22 14:17:02 2007 Koichi Sasada <ko1@atdot.net>
* bootstraptest/test_objectspace.rb: skip flozen string.
Sat Dec 22 14:02:58 2007 Koichi Sasada <ko1@atdot.net>
* array.c (rb_ary_permutation): add volatile to avoid GC problem.

Просмотреть файл

@ -17,7 +17,7 @@ assert_normal_exit %q{
ary.permutation(2) {|x|
if x == [1,2]
ObjectSpace.each_object(String) {|s|
s.clear if s.length == 40 || s.length == 80
s.clear if s.frozen? && (s.length == 40 || s.length == 80)
}
end
}