Skip to content

Commit

Permalink
Remove two outdated test inputs from regex match timeout tests (#106174)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephentoub authored Aug 13, 2024
1 parent 5ee1b86 commit d45f8b5
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1264,8 +1264,6 @@ public static IEnumerable<object[]> Match_Timeout_Throws_MemberData()
// Lookarounds
yield return new object[] { engine, @"((?=(?>a*))a)+", a1_000_000 };
yield return new object[] { engine, @"((?<=(?>a*))a)+", a1_000_000 };
yield return new object[] { engine, @"((?!(?>[^a]*))a)+", a1_000_000 };
yield return new object[] { engine, @"((?<!(?>[^a]*))a)+", a1_000_000 };

// All of the below tests have catastrophic backtracking...

Expand Down

0 comments on commit d45f8b5

Please sign in to comment.