Skip to content

Commit

Permalink
Reject spaces from fuzz name pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
MihaZupan committed May 23, 2024
1 parent 8d466a3 commit b791ad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runner/FuzzLibrariesJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,6 @@ await RunProcessAsync(
return failureStackUploaded == 0;
}

[GeneratedRegex(@"^fuzz (.+)", RegexOptions.IgnoreCase | RegexOptions.Singleline)]
[GeneratedRegex(@"^fuzz ([^ ]+)", RegexOptions.IgnoreCase | RegexOptions.Singleline)]
private static partial Regex FuzzerNameRegex();
}

0 comments on commit b791ad2

Please sign in to comment.