2015-02-15 06:24:18 +03:00
|
|
|
# -*- ruby -*-
|
2017-09-03 03:32:27 +03:00
|
|
|
$VERBOSE = false
|
|
|
|
if (opt = ENV["RUBYOPT"]) and (opt = opt.dup).sub!(/(?:\A|\s)-w(?=\z|\s)/, '')
|
|
|
|
ENV["RUBYOPT"] = opt
|
|
|
|
end
|
2017-05-07 15:00:58 +03:00
|
|
|
require "./rbconfig" unless defined?(RbConfig)
|
2023-01-26 08:13:13 +03:00
|
|
|
require_relative "../tool/test-coverage" if ENV.key?("COVERAGE")
|
2017-09-20 23:19:54 +03:00
|
|
|
load File.dirname(__FILE__) + '/ruby/default.mspec'
|
|
|
|
OBJDIR = File.expand_path("spec/ruby/optional/capi/ext")
|
2008-08-04 15:44:41 +04:00
|
|
|
class MSpecScript
|
2022-03-04 09:56:03 +03:00
|
|
|
@testing_ruby = true
|
|
|
|
|
2009-01-01 16:30:25 +03:00
|
|
|
builddir = Dir.pwd
|
2008-10-31 06:31:09 +03:00
|
|
|
srcdir = ENV['SRCDIR']
|
2021-10-18 04:13:15 +03:00
|
|
|
srcdir ||= File.read("Makefile", encoding: "US-ASCII")[/^\s*srcdir\s*=\s*(.+)/i, 1] rescue nil
|
2015-02-15 06:24:18 +03:00
|
|
|
config = RbConfig::CONFIG
|
2008-08-31 12:31:38 +04:00
|
|
|
|
2008-08-04 15:44:41 +04:00
|
|
|
# The default implementation to run the specs.
|
2008-10-31 06:31:09 +03:00
|
|
|
set :target, File.join(builddir, "miniruby#{config['exeext']}")
|
2017-09-20 23:19:54 +03:00
|
|
|
set :prefix, File.expand_path('ruby', File.dirname(__FILE__))
|
2021-10-18 04:29:51 +03:00
|
|
|
if srcdir
|
|
|
|
srcdir = File.expand_path(srcdir)
|
|
|
|
set :flags, %W[
|
|
|
|
-I#{srcdir}/lib
|
|
|
|
#{srcdir}/tool/runruby.rb --archdir=#{builddir} --extout=#{config['EXTOUT']}
|
|
|
|
--
|
|
|
|
]
|
|
|
|
end
|
2023-01-26 08:13:13 +03:00
|
|
|
|
|
|
|
if ENV.key?("COVERAGE")
|
|
|
|
set :excludes, ["Coverage"]
|
|
|
|
end
|
2008-08-04 15:44:41 +04:00
|
|
|
end
|
2017-04-05 04:36:21 +03:00
|
|
|
|
2017-04-09 04:23:02 +03:00
|
|
|
module MSpecScript::JobServer
|
2017-06-17 02:59:33 +03:00
|
|
|
def cores(max = 1)
|
2022-11-07 09:51:04 +03:00
|
|
|
if max > 1 and /(?:\A|\s)--jobserver-(?:auth|fds)=(\d+),(\d+)/ =~ ENV["MAKEFLAGS"]
|
2017-06-17 02:59:33 +03:00
|
|
|
cores = 1
|
2017-04-09 04:23:02 +03:00
|
|
|
begin
|
2022-11-07 09:51:04 +03:00
|
|
|
r = IO.for_fd($1.to_i(10), "rb", autoclose: false)
|
|
|
|
w = IO.for_fd($2.to_i(10), "wb", autoclose: false)
|
2017-06-17 02:59:33 +03:00
|
|
|
jobtokens = r.read_nonblock(max - 1)
|
2017-04-09 04:23:02 +03:00
|
|
|
cores = jobtokens.size
|
|
|
|
if cores > 0
|
2017-06-17 02:59:33 +03:00
|
|
|
cores += 1
|
2017-04-09 04:23:02 +03:00
|
|
|
jobserver = w
|
|
|
|
w = nil
|
|
|
|
at_exit {
|
|
|
|
jobserver.print(jobtokens)
|
|
|
|
jobserver.close
|
|
|
|
}
|
|
|
|
MSpecScript::JobServer.module_eval do
|
|
|
|
remove_method :cores
|
|
|
|
define_method(:cores) do
|
|
|
|
cores
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return cores
|
|
|
|
end
|
2017-05-15 13:32:30 +03:00
|
|
|
rescue Errno::EBADF
|
2017-04-09 04:23:02 +03:00
|
|
|
ensure
|
|
|
|
r&.close
|
|
|
|
w&.close
|
2017-04-05 04:36:21 +03:00
|
|
|
end
|
|
|
|
end
|
2017-04-09 04:23:02 +03:00
|
|
|
super
|
2017-04-05 04:36:21 +03:00
|
|
|
end
|
|
|
|
end
|
2017-04-09 04:23:02 +03:00
|
|
|
|
|
|
|
class MSpecScript
|
|
|
|
prepend JobServer
|
|
|
|
end
|