2008-08-04 15:44:41 +04:00
|
|
|
class MSpecScript
|
|
|
|
# An ordered list of the directories containing specs to run
|
|
|
|
# as the CI process.
|
|
|
|
set :ci_files, %w[
|
|
|
|
spec/rubyspec/1.9/core
|
|
|
|
spec/rubyspec/1.9/language
|
|
|
|
spec/rubyspec/1.9/library
|
|
|
|
]
|
|
|
|
|
2008-10-31 06:31:09 +03:00
|
|
|
builddir = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
|
|
|
srcdir = ENV['SRCDIR']
|
|
|
|
srcdir ||= $1 if File.read("#{builddir}/Makefile")[/^\s*srcdir\s*=\s*(.+)/i]
|
|
|
|
srcdir ||= builddir
|
|
|
|
config = proc{|name| `#{builddir}/miniruby -I#{srcdir} -rrbconfig -e 'print Config::CONFIG["#{name}"]'`}
|
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']}")
|
2008-08-31 12:31:38 +04:00
|
|
|
set :flags, %W[
|
|
|
|
-I#{srcdir}/lib
|
|
|
|
-I#{srcdir}/#{config['EXTOUT']}/common
|
|
|
|
-I#{srcdir}/-
|
|
|
|
-r#{srcdir}/ext/purelib.rb
|
|
|
|
#{srcdir}/runruby.rb --extout=#{config['EXTOUT']}
|
|
|
|
]
|
2008-08-04 15:44:41 +04:00
|
|
|
end
|