summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-mruby
diff options
context:
space:
mode:
authorTomoyuki Sahara <[email protected]>2017-02-24 11:47:48 +0900
committerTomoyuki Sahara <[email protected]>2017-02-24 11:47:48 +0900
commitda4f8e19fabd0e4cbe1984336714505947562293 (patch)
tree5294b4586e1be4b850e96691fd23733c0212cf21 /mrbgems/mruby-bin-mruby
parenta9f7b41219810fdbe0cffa872051cd091fc070ac (diff)
downloadmruby-da4f8e19fabd0e4cbe1984336714505947562293.tar.gz
mruby-da4f8e19fabd0e4cbe1984336714505947562293.zip
replace "yylval" with "pylval" to make it compile 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