* bootstraptest/test_{io,marshal}.rb, lib/rubygems/require_paths_builder.rb test/ruby/test_m17n.rb: set properties.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2007-11-26 01:20:48 +00:00
parent f7bd951bea
commit e42d6b8862
2 changed files with 14 additions and 14 deletions

View File

@ -1,9 +1,9 @@
assert_finish 1, %q{ assert_finish 1, %q{
r, w = IO.pipe r, w = IO.pipe
t1 = Thread.new { r.sysread(1) } t1 = Thread.new { r.sysread(1) }
t2 = Thread.new { r.sysread(1) } t2 = Thread.new { r.sysread(1) }
sleep 0.1 sleep 0.1
w.write "a" w.write "a"
sleep 0.1 sleep 0.1
w.write "a" w.write "a"
}, '[ruby-dev:31866]' }, '[ruby-dev:31866]'

View File

@ -1,5 +1,5 @@
assert_normal_exit %q{ assert_normal_exit %q{
Marshal.load(Marshal.dump({"k"=>"v"}), lambda {|v| }) Marshal.load(Marshal.dump({"k"=>"v"}), lambda {|v| })
} }