summaryrefslogtreecommitdiff
path: root/test/racc
AgeCommit message (Collapse)Author
2021-06-25[ruby/racc] Stop compressing integer listsJean Boussier
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
2020-11-10[ruby/racc] skip the failing test with JRubyHiroshi SHIBATA
https://github.com/ruby/racc/commit/cf37713895
2020-11-10lib/racc/statetransitiontable.rb: Make the racc output stableYusuke Endoh
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. Notes: Merged: https://github.com/ruby/ruby/pull/3749
2020-09-29test/racc/test_racc_command.rb: prevent a warningYusuke Endoh
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 ```
2020-09-28[Fixes #137] Improve reportingMarc-Andre Lafortune
2019-12-20Fixed misspellingsNobuyoshi Nakada
Fixed misspellings reported at [Bug #16437], for default gems.
2019-12-10Update regression tests for 1.4.16Hiroshi SHIBATA
2019-11-17Fix typosKazuhiro NISHIYAMA
2019-11-04[ruby/racc] Strip trailing whitespaces at the last line of actionsNobuyoshi Nakada
https://github.com/ruby/racc/commit/a887ebe529
2019-10-31Also ignore mswin platformHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/2635
2019-10-31Ignore test_racc_command with linux platformHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/2635
2019-10-31Try to run assert_output_unchanged with racc testsHiroshi SHIBATA
Notes: Merged: https://github.com/ruby/ruby/pull/2635
2019-10-30Regenerate the output results for test fixtures of raccHiroshi SHIBATA
2019-07-02Clean up temporary directory for raccNobuyoshi Nakada
2019-07-01Suppress unused variable warningNobuyoshi Nakada
2019-06-20Restore $VERBOSENobuyoshi Nakada
2019-06-20Suppress warningsNobuyoshi Nakada
2019-06-19test/racc/test_racc_command.rb: Extend the timeoutYusuke Endoh
test_opal, test_ruby18, and test_ruby22 are slow tests. https://rubyci.org/logs/rubyci.s3.amazonaws.com/scw-ad7f67/ruby-master/log/20190619T105405Z.fail.html.gz
2019-06-19* remove trailing spaces, append newline at EOF.git
2019-06-19Temporary disabled to invoke assert_output_unchanged.Hiroshi SHIBATA
Because some environment created the different results from test fixtures.
2019-06-19Workaround for the external file for racc testHiroshi SHIBATA
2019-06-19use TEMP_DIR.Hiroshi SHIBATA
2019-06-19Use Test::Unit instead of Minitest and fixed test error with ruby repo.Hiroshi SHIBATA
Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
2019-06-19Restore test_dir and update prefix for Dir.mktmpdir.Hiroshi SHIBATA
2019-06-19Try to use Dir.mktmpdir.Hiroshi SHIBATA
2019-06-19Fixed path for ruby core repository.Hiroshi SHIBATA
2019-06-19Backport racc-1.4.15 from upstream.Hiroshi SHIBATA