From cfe18142cbb34fe7080d6a98b02a6e425490e972 Mon Sep 17 00:00:00 2001 From: Tomoyuki Sahara Date: Tue, 21 May 2013 13:53:27 +0900 Subject: test runner. --- run_test.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 run_test.rb diff --git a/run_test.rb b/run_test.rb new file mode 100644 index 000000000..bbdfaab90 --- /dev/null +++ b/run_test.rb @@ -0,0 +1,26 @@ +#!/usr/bin/env ruby +# +# mrbgems test runner +# + +if __FILE__ == $0 + repository, dir = 'https://github.com/mruby/mruby.git', 'tmp/mruby' + build_args = ARGV + + Dir.mkdir 'tmp' unless File.exist?('tmp') + unless File.exist?(dir) + system "git clone #{repository} #{dir}" + end + + exit system(%Q[cd #{dir}; MRUBY_CONFIG=#{File.expand_path __FILE__} ruby minirake #{build_args.join(' ')}]) +end + +MRuby::Build.new do |conf| + toolchain :gcc + conf.gembox 'default' + + conf.gem :git => 'https://github.com/iij/mruby-mtest.git' + conf.gem :git => 'https://github.com/iij/mruby-io.git' + + conf.gem File.expand_path(File.dirname(__FILE__)) +end -- cgit v1.2.3