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

Move obsoleted test/thread/test_*.rb with the current implementation.

* test/ruby/test_thread_{cv,queue}.rb: Move under the test/ruby directory.
    and rename TestThread* from Test*.
  * test/test_sync.rb: Move toplevel of test diretory because sync is still
    standard library.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64137 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2018-07-31 03:49:38 +00:00
parent e52a9b593f
commit 8bcf27527c
3 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
require 'test/unit'
require 'tmpdir'
class TestConditionVariable < Test::Unit::TestCase
class TestThreadConditionVariable < Test::Unit::TestCase
ConditionVariable = Thread::ConditionVariable
Mutex = Thread::Mutex

View file

@ -3,7 +3,7 @@ require 'test/unit'
require 'tmpdir'
require 'timeout'
class TestQueue < Test::Unit::TestCase
class TestThreadQueue < Test::Unit::TestCase
Queue = Thread::Queue
SizedQueue = Thread::SizedQueue