diff options
| author | Tomoyuki Sahara <[email protected]> | 2013-05-21 13:53:27 +0900 |
|---|---|---|
| committer | Tomoyuki Sahara <[email protected]> | 2013-05-21 13:53:27 +0900 |
| commit | cfe18142cbb34fe7080d6a98b02a6e425490e972 (patch) | |
| tree | 90a2ca36233bafc5b72d271946b3292f15a498d6 | |
| parent | 89147066f8909f91b738f3dbfb9bc9fc78c66190 (diff) | |
| download | mruby-cfe18142cbb34fe7080d6a98b02a6e425490e972.tar.gz mruby-cfe18142cbb34fe7080d6a98b02a6e425490e972.zip | |
test runner.
| -rw-r--r-- | run_test.rb | 26 |
1 files changed, 26 insertions, 0 deletions
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 |
