diff options
| author | Tomoyuki Sahara <[email protected]> | 2017-02-24 11:47:48 +0900 |
|---|---|---|
| committer | Tomoyuki Sahara <[email protected]> | 2017-02-24 11:47:48 +0900 |
| commit | da4f8e19fabd0e4cbe1984336714505947562293 (patch) | |
| tree | 5294b4586e1be4b850e96691fd23733c0212cf21 /mrbgems/mruby-bin-mruby | |
| parent | a9f7b41219810fdbe0cffa872051cd091fc070ac (diff) | |
| download | mruby-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.rb | 4 |
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 |
