1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* bootstraptest/test_thread.rb: add a test.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2008-08-31 07:39:45 +00:00
parent d1429c3cc6
commit 03b2fc9adf
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Aug 31 16:39:17 2008 Koichi Sasada <ko1@atdot.net>
* bootstraptest/test_thread.rb: add a test.
Sun Aug 31 16:34:41 2008 Tanaka Akira <akr@fsij.org>
* enc/trans/single_byte.trans (us_ascii_map): don't define 8bit bytes.

View file

@ -361,3 +361,7 @@ assert_equal 'ok', %q{
t.join
$? ? :ng : :ok
}, '[ruby-dev:35414]'
assert_equal 'ok', %q{
10000.times { Thread.new(true) {|x| x == false } }; :ok
}