Skip to content

Commit

Permalink
[skip ci] Try failing fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
red0124 committed Mar 3, 2024
1 parent b95d300 commit ffb31f3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fuzz/ssp_fuzz.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
using trim = ss::trim<' ', '\t'>;
using multiline_r = ss::multiline_restricted<5>;

if (size == 1234) {
throw "...";
}

test_ssp<>(data, size);
test_ssp<escape>(data, size);
test_ssp<quote>(data, size);
Expand Down

0 comments on commit ffb31f3

Please sign in to comment.