oss-fuzz-gen
oss-fuzz-gen copied to clipboard
"Project not in OSS-Fuzz (likely only contains a project.yaml file)" when generate a benchmark-yaml.
oss-fuzz-gen is a great job, thank you for making your code open source!!!
When I execute this command
python3 runner.py -o oss-fuzz-10 -t 15 -i https://github.com/memononen/nanosvg -m openai
,
it generated a project temp-project-4-cov-test-fuzz-build-0-fuzzgen-0
temp-project-4-cov-test-fuzz-build-0-fuzzgen-0.zip.
When I execute this command
run_all_experiments.py -l gpt-3.5-turbo -w bench-projects/gen1 -of bench-projects/oss-fuzz -g far-reach-low-coverage,low-cov-with-fuzz-keyword,easy-params-far-reach,optimal-targets -gp temp-project-4-cov-test-fuzz-build-0-fuzzgen-0
,
it will send a request to the api
https://introspector.oss-fuzz.com/api/far-reach-but-low-coverage?project=temp-project-4-cov-test-fuzz-build-0-fuzzgen-0&exclude-static-functions=True&only-referenced-functions=False&only-with-header-file-declaration=True
.
And I get the response of Project not in OSS-Fuzz (likely only contains a project.yaml file).
I have a few questions to ask:
- How to get the right response?
- I didn't find any code about request processing for this API
https://introspector.oss-fuzz.com/api/far-reach-but-low-coverage
in introspectot's, is this part of the code somewhere else?