<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/test/racc, branch v3_2_11</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/racc] Make racc test more flexible (for JRuby).</title>
<updated>2022-11-10T22:36:34+00:00</updated>
<author>
<name>Thomas E. Enebo</name>
<email>tom.enebo@gmail.com</email>
</author>
<published>2022-11-10T19:37:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=51d161980ae0e26602eb17bed5f9cc0beb61f9a3'/>
<id>51d161980ae0e26602eb17bed5f9cc0beb61f9a3</id>
<content type='text'>
JRuby uses these same files for testing racc. The existing logic will not
find 'racc' in a JRuby project checkout. This change allows it to work by
just assuming 'ruby -S racc' when running tests. This will not change C
Ruby's detection when setting up tests (since earlier checks will find
racc).

https://github.com/ruby/racc/commit/b74ce5e018
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
JRuby uses these same files for testing racc. The existing logic will not
find 'racc' in a JRuby project checkout. This change allows it to work by
just assuming 'ruby -S racc' when running tests. This will not change C
Ruby's detection when setting up tests (since earlier checks will find
racc).

https://github.com/ruby/racc/commit/b74ce5e018
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Show diffs</title>
<updated>2022-05-20T08:49:15+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2019-10-30T16:09:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=1d9f2a450410e57c5d7fbfe078872a95eb3ec82a'/>
<id>1d9f2a450410e57c5d7fbfe078872a95eb3ec82a</id>
<content type='text'>
https://github.com/ruby/racc/commit/0b679e2f69
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/0b679e2f69
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Prefer __dir__ over File.dirname(__FILE__)</title>
<updated>2021-09-15T07:20:18+00:00</updated>
<author>
<name>Olle Jonsson</name>
<email>olle.jonsson@auctionet.com</email>
</author>
<published>2021-09-14T12:38:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=645acf5771dccdae7791c8e1e24a43ad350a3594'/>
<id>645acf5771dccdae7791c8e1e24a43ad350a3594</id>
<content type='text'>
https://github.com/ruby/racc/commit/c49df40658
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/c49df40658
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Rename helper to case</title>
<updated>2021-09-14T23:52:49+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2021-09-14T12:15:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f650ca7568d076f6e7afb32886abfcf85b17275d'/>
<id>f650ca7568d076f6e7afb32886abfcf85b17275d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Ignored loading CoreAssertions in test case</title>
<updated>2021-09-14T23:49:24+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2021-09-14T12:26:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=845ab32a2911f9a857e1a91551465d1cb1f70996'/>
<id>845ab32a2911f9a857e1a91551465d1cb1f70996</id>
<content type='text'>
https://github.com/ruby/racc/commit/1f8b05b298
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/1f8b05b298
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] Stop compressing integer lists</title>
<updated>2021-06-25T08:23:06+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2021-05-31T10:15:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=71344a1d63038aa30328f91a180efb486ae4c19a'/>
<id>71344a1d63038aa30328f91a180efb486ae4c19a</id>
<content type='text'>
It is unclear why this was implemented, I assume
it was for performance back in 2006.

However today, this compression defeats bytecode caching
entirely and end up being counter productive.

https://github.com/ruby/racc/commit/ae3703c1d0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is unclear why this was implemented, I assume
it was for performance back in 2006.

However today, this compression defeats bytecode caching
entirely and end up being counter productive.

https://github.com/ruby/racc/commit/ae3703c1d0
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/racc] skip the failing test with JRuby</title>
<updated>2020-11-10T12:21:07+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2020-11-10T12:12:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=4a03df4507971e35732935cc2eb4a3bd9bf4a1a5'/>
<id>4a03df4507971e35732935cc2eb4a3bd9bf4a1a5</id>
<content type='text'>
https://github.com/ruby/racc/commit/cf37713895
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/racc/commit/cf37713895
</pre>
</div>
</content>
</entry>
<entry>
<title>lib/racc/statetransitiontable.rb: Make the racc output stable</title>
<updated>2020-11-09T22:49:19+00:00</updated>
<author>
<name>Yusuke Endoh</name>
<email>mame@ruby-lang.org</email>
</author>
<published>2020-11-09T10:49:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2fed5f0ad806869139d0e0b1ffc30c517e6baf20'/>
<id>2fed5f0ad806869139d0e0b1ffc30c517e6baf20</id>
<content type='text'>
Racc calls `Array#sort!` to build a state transition table. As
`Array#sort!` is not a stable sort, the output may differ depending upon
the environment.

This changeset makes the sort stable manually, and updates all
expectation files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Racc calls `Array#sort!` to build a state transition table. As
`Array#sort!` is not a stable sort, the output may differ depending upon
the environment.

This changeset makes the sort stable manually, and updates all
expectation files.
</pre>
</div>
</content>
</entry>
<entry>
<title>test/racc/test_racc_command.rb: prevent a warning</title>
<updated>2020-09-29T02:58:04+00:00</updated>
<author>
<name>Yusuke Endoh</name>
<email>mame@ruby-lang.org</email>
</author>
<published>2020-09-29T02:58:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=40a499db65c3ef07cab2c1d7113328ef9dd40b09'/>
<id>40a499db65c3ef07cab2c1d7113328ef9dd40b09</id>
<content type='text'>
http://rubyci.s3.amazonaws.com/ubuntu2004/ruby-master/log/20200929T003003Z.log.html.gz
```
warning: ambiguous first argument; put parentheses or a space even after `/' operator
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
http://rubyci.s3.amazonaws.com/ubuntu2004/ruby-master/log/20200929T003003Z.log.html.gz
```
warning: ambiguous first argument; put parentheses or a space even after `/' operator
```
</pre>
</div>
</content>
</entry>
<entry>
<title>[Fixes #137] Improve reporting</title>
<updated>2020-09-28T09:07:24+00:00</updated>
<author>
<name>Marc-Andre Lafortune</name>
<email>github@marc-andre.ca</email>
</author>
<published>2020-08-14T01:50:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=97d1a381e112e843ff014a05a083e42165b7bb01'/>
<id>97d1a381e112e843ff014a05a083e42165b7bb01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
