* 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
Родитель d1429c3cc6
Коммит 03b2fc9adf
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -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.

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

@ -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
}