gazprea-fuzzer-python/tester_config.json
2023-11-24 09:31:18 -07:00

37 lines
738 B
JSON

{
"inDir": "input",
"outDir": "outputs",
"inStrDir": "instream",
"testedExecutablePaths": {
"fuzzer": "../exec/gazc"
},
"runtimes": {
"fuzzer": "../exec/libgazrt.so"
},
"toolchains": {
"gazprea": [
{
"stepName": "gazc",
"executablePath": "$EXE",
"arguments": [
"$INPUT",
"$OUTPUT"
],
"output": "gazc.ll",
"allowError": true
},
{
"stepName": "lli",
"executablePath": "/cshome/cmput415/415-resources/llvm-project/build/bin/lli",
"arguments": [
"$INPUT"
],
"output": "-",
"usesRuntime": true,
"usesInStr": true,
"allowError": true
}
]
}
}