diff --git a/spec/std/regex_spec.cr b/spec/std/regex_spec.cr index 72f62a3463cd..c8d08e081bff 100644 --- a/spec/std/regex_spec.cr +++ b/spec/std/regex_spec.cr @@ -200,7 +200,8 @@ describe "Regex" do /foo/.matches?("foo", options: Regex::Options::ANCHORED).should be_true end - it "doesn't crash with a large single line string" do + # FIXME: PCRE2 JIT match on windows fails with invalid memory access. + pending_win32 "doesn't crash with a large single line string" do str = File.read(datapath("large_single_line_string.txt")) {% if Regex::Engine.resolve.name == "Regex::PCRE" %}