From 6460ef77bcceb17d80d1b46a07b28fada19737c8 Mon Sep 17 00:00:00 2001 From: take_cheeze Date: Mon, 6 Apr 2015 15:20:13 +0900 Subject: Compile mruby compiler as mrbgem. Compiler codes is moved to "mruby-compiler". Executable `mrbc` is moved to "mruby-bin-mrbc". --- bintest/mrbc.rb | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 bintest/mrbc.rb (limited to 'bintest') diff --git a/bintest/mrbc.rb b/bintest/mrbc.rb deleted file mode 100644 index b016378a1..000000000 --- a/bintest/mrbc.rb +++ /dev/null @@ -1,12 +0,0 @@ -require 'tempfile' - -assert('Compiling multiple files without new line in last line. #2361') do - a, b, out = Tempfile.new('a.rb'), Tempfile.new('b.rb'), Tempfile.new('out.mrb') - a.write('module A; end') - a.flush - b.write('module B; end') - b.flush - result = `bin/mrbc -c -o #{out.path} #{a.path} #{b.path} 2>&1` - assert_equal "bin/mrbc:#{a.path}:Syntax OK", result.chomp - assert_equal 0, $?.exitstatus -end -- cgit v1.2.3