summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-mruby
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-02-24 18:39:20 +0900
committerGitHub <[email protected]>2017-02-24 18:39:20 +0900
commitfecbde328a2bc1f55b22648a3d5a5663d416343d (patch)
tree5294b4586e1be4b850e96691fd23733c0212cf21 /mrbgems/mruby-bin-mruby
parenta9f7b41219810fdbe0cffa872051cd091fc070ac (diff)
parentda4f8e19fabd0e4cbe1984336714505947562293 (diff)
downloadmruby-fecbde328a2bc1f55b22648a3d5a5663d416343d.tar.gz
mruby-fecbde328a2bc1f55b22648a3d5a5663d416343d.zip
Merge pull request #3461 from iij/build-with-byacc
Build with byacc
Diffstat (limited to 'mrbgems/mruby-bin-mruby')
-rw-r--r--mrbgems/mruby-bin-mruby/bintest/mruby.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-bin-mruby/bintest/mruby.rb b/mrbgems/mruby-bin-mruby/bintest/mruby.rb
index 72ac6586d..b6b090185 100644
--- a/mrbgems/mruby-bin-mruby/bintest/mruby.rb
+++ b/mrbgems/mruby-bin-mruby/bintest/mruby.rb
@@ -2,9 +2,9 @@ require 'tempfile'
assert('regression for #1564') do
o = `#{cmd('mruby')} -e #{shellquote('<<')} 2>&1`
- assert_equal o, "-e:1:2: syntax error, unexpected tLSHFT\n"
+ assert_include o, "-e:1:2: syntax error"
o = `#{cmd('mruby')} -e #{shellquote('<<-')} 2>&1`
- assert_equal o, "-e:1:3: syntax error, unexpected tLSHFT\n"
+ assert_include o, "-e:1:3: syntax error"
end
assert('regression for #1572') do