google / oss-fuzz-gen

LLM powered fuzzing via OSS-Fuzz.
Apache License 2.0
841 stars 98 forks source link

test-to-harness: Fix missing return statement #591

Closed arthurscchan closed 3 weeks ago

arthurscchan commented 3 weeks ago

For benchmark generation process, if there is any oracle with test-migration then the process should only generate benchmarks from the test-migration oracle and ignoring the others because the benchmarks will have different .yaml structure. But the current logic missing a return statement and the logic will continue to handle other oracles after processing the test-migration oracle. This PR fixes that.