mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Enable checkers on parallel test.
parallel test (`make test-all TESTS=-j8`) runs tests on specified number of processes. However, some test checkers written in `runner.rb` are not loaded. This fix enable these checkers on parallel tests. See also: https://github.com/ruby/ruby/pull/2508
This commit is contained in:
parent
99d3043bd8
commit
84cbce3d88
3 changed files with 14 additions and 5 deletions
|
|
@ -2,6 +2,11 @@
|
|||
$LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../.."
|
||||
require 'test/unit'
|
||||
|
||||
require "profile_test_all" if ENV.key?('RUBY_TEST_ALL_PROFILE')
|
||||
require "tracepointchecker"
|
||||
require "zombie_hunter"
|
||||
require "iseq_loader_checker"
|
||||
|
||||
module Test
|
||||
module Unit
|
||||
class Worker < Runner # :nodoc:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue