Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions test/prism/ruby/parser_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,16 @@ class ParserTest < TestCase
"seattlerb/heredoc_with_extra_carriage_returns_windows.txt",
"seattlerb/heredoc_with_only_carriage_returns_windows.txt",
"seattlerb/heredoc_with_only_carriage_returns.txt",

# https://github.com/whitequark/parser/issues/1026
# Regex with \c escape
"unescaping.txt",
"seattlerb/regexp_esc_C_slash.txt",
]

# These files are either failing to parse or failing to translate, so we'll
# skip them for now.
skip_all = skip_incorrect | [
"unescaping.txt",
"seattlerb/regexp_esc_C_slash.txt",
]

# Not sure why these files are failing on JRuby, but skipping them for now.
Expand Down
Loading