We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45ff6fd commit 585abd5Copy full SHA for 585abd5
spec/truffle/parsing/parsing_spec.rb
@@ -65,7 +65,9 @@
65
expected_ast.strip!
66
index = index.to_i
67
68
- guard -> { Primitive.vm_single_context? && !TruffleRuby.jit? } do
+ # multiple-context mode, enabled JIT or changed default inline cache size affects Truffle AST.
69
+ # So just don't run the pursing specs at all in such jobs on CI.
70
+ guard -> { Primitive.vm_single_context? && !TruffleRuby.jit? && Truffle::Boot.get_option("default-cache") != 0 } do
71
it "a #{subject} (#{description.strip}) case is parsed correctly" do
72
skip "YARP specific test" if original_parser && yarp_specific
73
0 commit comments