2015-02-15 03:24:18 +00:00
|
|
|
# -*- ruby -*-
|
|
|
|
load "./rbconfig.rb"
|
2015-02-25 13:25:11 +00:00
|
|
|
load File.dirname(__FILE__) + '/rubyspec/default.mspec'
|
2016-04-21 21:59:01 +00:00
|
|
|
OBJDIR = File.expand_path("spec/rubyspec/optional/capi/ext")
|
2008-08-04 11:44:41 +00:00
|
|
|
class MSpecScript
|
2009-01-01 13:30:25 +00:00
|
|
|
builddir = Dir.pwd
|
2008-10-31 03:31:09 +00:00
|
|
|
srcdir = ENV['SRCDIR']
|
2014-08-17 23:04:23 +00:00
|
|
|
if !srcdir and File.exist?("#{builddir}/Makefile") then
|
2009-01-01 13:30:25 +00:00
|
|
|
File.open("#{builddir}/Makefile", "r:US-ASCII") {|f|
|
|
|
|
f.read[/^\s*srcdir\s*=\s*(.+)/i] and srcdir = $1
|
|
|
|
}
|
|
|
|
end
|
2016-04-21 21:38:21 +00:00
|
|
|
srcdir = File.expand_path(srcdir)
|
2015-02-15 03:24:18 +00:00
|
|
|
config = RbConfig::CONFIG
|
2008-08-31 08:31:38 +00:00
|
|
|
|
2008-08-04 11:44:41 +00:00
|
|
|
# The default implementation to run the specs.
|
2008-10-31 03:31:09 +00:00
|
|
|
set :target, File.join(builddir, "miniruby#{config['exeext']}")
|
2009-01-01 13:30:25 +00:00
|
|
|
set :prefix, File.expand_path('rubyspec', File.dirname(__FILE__))
|
2008-08-31 08:31:38 +00:00
|
|
|
set :flags, %W[
|
2016-04-21 21:38:21 +00:00
|
|
|
-I#{srcdir}/lib
|
|
|
|
-I#{srcdir}
|
|
|
|
-I#{srcdir}/#{config['EXTOUT']}/common
|
|
|
|
#{srcdir}/tool/runruby.rb --archdir=#{Dir.pwd} --extout=#{config['EXTOUT']}
|
2016-11-09 02:42:30 +00:00
|
|
|
--
|
2008-08-31 08:31:38 +00:00
|
|
|
]
|
2008-08-04 11:44:41 +00:00
|
|
|
end
|