summaryrefslogtreecommitdiffhomepage
path: root/bintest
diff options
context:
space:
mode:
Diffstat (limited to 'bintest')
-rw-r--r--bintest/mrbc.rb12
1 files changed, 0 insertions, 12 deletions
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