Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

vscode: use latest FI and adjust runner #12898

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
vscode: use latest FI and adjust runner
Signed-off-by: David Korczynski <david@adalogics.com>
  • Loading branch information
DavidKorczynski committed Jan 2, 2025
commit 58e66815cd7355b785c1bc3c139480b74c662a07
6 changes: 1 addition & 5 deletions tools/vscode-extension/src/commands/cmdRunFI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ export async function runFuzzIntrospectorHandler() {
}

const cmdToExec = '/tmp/fi-tmp-env/bin/fuzz-introspector';
const args: Array<string> = [
'full',
'--target_dir=${pathOfLocal}',
'--language=c',
];
const args: Array<string> = ['full', '--target_dir=' + pathOfLocal];
const [res, output] = await systemSync(cmdToExec, args);
if (res === false) {
println('Failed run FI');
Expand Down
2 changes: 1 addition & 1 deletion tools/vscode-extension/src/commands/cmdSetupFI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export async function setUpFuzzIntrospectorHandler() {
'-m',
'pip',
'install',
'fuzz-introspector==0.1.4',
'fuzz-introspector==0.1.5',
];
const [res2, output2] = await systemSync(cmdToExec2, args2);
if (res2 === false) {
Expand Down
Loading