mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f1be083f09
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
34 lines
761 B
Ruby
34 lines
761 B
Ruby
require 'test/unit'
|
|
require 'mkmf'
|
|
require 'tmpdir'
|
|
|
|
$extout = '$(topdir)/'+RbConfig::CONFIG["EXTOUT"]
|
|
RbConfig::CONFIG['topdir'] = CONFIG['topdir'] = File.expand_path(CONFIG['topdir'])
|
|
RbConfig::CONFIG["extout"] = CONFIG["extout"] = $extout
|
|
$INCFLAGS << " -I."
|
|
$extout_prefix = "$(extout)$(target_prefix)/"
|
|
|
|
class TestMkmf < Test::Unit::TestCase
|
|
def setup
|
|
@tmpdir = Dir.mktmpdir
|
|
@curdir = Dir.pwd
|
|
@mkmfobj = Object.new
|
|
Dir.chdir(@tmpdir)
|
|
class << (@output = "")
|
|
def flush; end
|
|
def reopen(*) end
|
|
alias write <<
|
|
end
|
|
$stdout = @output
|
|
end
|
|
|
|
def teardown
|
|
$stdout = STDOUT
|
|
Dir.chdir(@curdir)
|
|
FileUtils.rm_rf(@tmpdir)
|
|
end
|
|
|
|
def mkmf(*args, &block)
|
|
@mkmfobj.instance_eval(*args, &block)
|
|
end
|
|
end
|