From 4452041ebb56b17c720ca459e3a312ec2c145187 Mon Sep 17 00:00:00 2001 From: KOBAYASHI Shuji Date: Thu, 3 Dec 2020 23:32:13 +0900 Subject: Move `mrbc` test to `mruby-bin-mrbc` gem from `mruby-compiler` gem --- mrbgems/mruby-bin-mirb/bintest/mirb.rb | 1 + mrbgems/mruby-bin-mrbc/bintest/mrbc.rb | 30 ++++++++++++++++++++++++++++++ mrbgems/mruby-compiler/bintest/mrbc.rb | 30 ------------------------------ 3 files changed, 31 insertions(+), 30 deletions(-) create mode 100644 mrbgems/mruby-bin-mrbc/bintest/mrbc.rb delete mode 100644 mrbgems/mruby-compiler/bintest/mrbc.rb diff --git a/mrbgems/mruby-bin-mirb/bintest/mirb.rb b/mrbgems/mruby-bin-mirb/bintest/mirb.rb index 6e87d80aa..62f863c27 100644 --- a/mrbgems/mruby-bin-mirb/bintest/mirb.rb +++ b/mrbgems/mruby-bin-mirb/bintest/mirb.rb @@ -1,4 +1,5 @@ require 'open3' +require 'tempfile' assert('mirb normal operations') do o, s = Open3.capture2(cmd("mirb"), :stdin_data => "a=1\nb=2\na+b\n") diff --git a/mrbgems/mruby-bin-mrbc/bintest/mrbc.rb b/mrbgems/mruby-bin-mrbc/bintest/mrbc.rb new file mode 100644 index 000000000..f4d9208b3 --- /dev/null +++ b/mrbgems/mruby-bin-mrbc/bintest/mrbc.rb @@ -0,0 +1,30 @@ +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 = `#{cmd('mrbc')} -c -o #{out.path} #{a.path} #{b.path} 2>&1` + assert_equal "#{cmd('mrbc')}:#{a.path}:Syntax OK", result.chomp + assert_equal 0, $?.exitstatus +end + +assert('parsing function with void argument') do + a, out = Tempfile.new('a.rb'), Tempfile.new('out.mrb') + a.write('f ()') + a.flush + result = `#{cmd('mrbc')} -c -o #{out.path} #{a.path} 2>&1` + assert_equal "#{cmd('mrbc')}:#{a.path}:Syntax OK", result.chomp + assert_equal 0, $?.exitstatus +end + +assert('embedded document with invalid terminator') do + a, out = Tempfile.new('a.rb'), Tempfile.new('out.mrb') + a.write("=begin\n=endx\n") + a.flush + result = `#{cmd('mrbc')} -c -o #{out.path} #{a.path} 2>&1` + assert_equal "#{a.path}:3:0: embedded document meets end of file", result.chomp + assert_equal 1, $?.exitstatus +end diff --git a/mrbgems/mruby-compiler/bintest/mrbc.rb b/mrbgems/mruby-compiler/bintest/mrbc.rb deleted file mode 100644 index f4d9208b3..000000000 --- a/mrbgems/mruby-compiler/bintest/mrbc.rb +++ /dev/null @@ -1,30 +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 = `#{cmd('mrbc')} -c -o #{out.path} #{a.path} #{b.path} 2>&1` - assert_equal "#{cmd('mrbc')}:#{a.path}:Syntax OK", result.chomp - assert_equal 0, $?.exitstatus -end - -assert('parsing function with void argument') do - a, out = Tempfile.new('a.rb'), Tempfile.new('out.mrb') - a.write('f ()') - a.flush - result = `#{cmd('mrbc')} -c -o #{out.path} #{a.path} 2>&1` - assert_equal "#{cmd('mrbc')}:#{a.path}:Syntax OK", result.chomp - assert_equal 0, $?.exitstatus -end - -assert('embedded document with invalid terminator') do - a, out = Tempfile.new('a.rb'), Tempfile.new('out.mrb') - a.write("=begin\n=endx\n") - a.flush - result = `#{cmd('mrbc')} -c -o #{out.path} #{a.path} 2>&1` - assert_equal "#{a.path}:3:0: embedded document meets end of file", result.chomp - assert_equal 1, $?.exitstatus -end -- cgit v1.2.3