diff options
| author | Akira Yumiyama <[email protected]> | 2013-05-02 23:44:40 +0900 |
|---|---|---|
| committer | Akira Yumiyama <[email protected]> | 2013-05-02 23:44:40 +0900 |
| commit | 8bfbca234f367d1475561ee847ccb9b2d832c4ae (patch) | |
| tree | 0ae83f5b69a1bbe4fd0b142036efb33cbec79782 | |
| parent | d5982b43c5935013bb8a3c163eb28ed303983c31 (diff) | |
| download | mruby-8bfbca234f367d1475561ee847ccb9b2d832c4ae.tar.gz mruby-8bfbca234f367d1475561ee847ccb9b2d832c4ae.zip | |
update run_test.rb
| -rw-r--r-- | run_test.rb | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/run_test.rb b/run_test.rb index 7be23b4d3..d9566a2a6 100644 --- a/run_test.rb +++ b/run_test.rb @@ -3,16 +3,11 @@ # mrbgems test runner # -DEPEND_GEMS = [] gemname = File.basename(File.dirname(File.expand_path __FILE__)) if __FILE__ == $0 repository, dir = 'https://github.com/mruby/mruby.git', 'tmp/mruby' build_args = ARGV - if ARGV.first && ARGV.first.include?('iij') - repository, dir = 'https://github.com/iij/mruby.git', 'tmp/iij-mruby' - build_args = ARGV[1, ARGV.size] - end build_args = ['all', 'test'] if build_args.nil? or build_args.empty? Dir.mkdir 'tmp' unless File.exist?('tmp') @@ -25,9 +20,7 @@ end MRuby::Build.new do |conf| toolchain :gcc - conf.gems.clear + conf.gembox 'default' + conf.gem File.expand_path(File.dirname(__FILE__)) - DEPEND_GEMS.each do |g| - conf.gem g - end end |
