summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-compiler
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-12-04 12:50:48 +0900
committerGitHub <[email protected]>2020-12-04 12:50:48 +0900
commit4cd349373779bb643444f85fa1d04b0769c58c63 (patch)
tree0be0543faf3f3b02688ed7a8da911dbd15a952a5 /mrbgems/mruby-compiler
parentf6ad16384146afa7ec875697c80e200c23cb5b12 (diff)
parent4452041ebb56b17c720ca459e3a312ec2c145187 (diff)
downloadmruby-4cd349373779bb643444f85fa1d04b0769c58c63.tar.gz
mruby-4cd349373779bb643444f85fa1d04b0769c58c63.zip
Merge pull request #5211 from shuujii/move-mrbc-test-to-mruby-bin-mrbc-gem-from-mruby-compiler-gem
Move `mrbc` test to `mruby-bin-mrbc` gem from `mruby-compiler` gem
Diffstat (limited to 'mrbgems/mruby-compiler')
-rw-r--r--mrbgems/mruby-compiler/bintest/mrbc.rb30
1 files changed, 0 insertions, 30 deletions
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