-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bugs, typing and formatting issues
Signed-off-by: Arthur Chan <[email protected]>
- Loading branch information
1 parent
c932b9d
commit 0d1beef
Showing
7 changed files
with
53 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
diff --git a/scripts/oss-fuzz-gen-e2e/build_all.sh b/scripts/oss-fuzz-gen-e2e/build_all.sh | ||
index 6afbfcf..b135109 100755 | ||
--- a/scripts/oss-fuzz-gen-e2e/build_all.sh | ||
+++ b/scripts/oss-fuzz-gen-e2e/build_all.sh | ||
@@ -20,7 +20,7 @@ mkdir -p workdir | ||
cd workdir | ||
WORKDIR=$PWD | ||
|
||
-python3.11 -m virtualenv .venv | ||
+python3 -m virtualenv .venv | ||
. .venv/bin/activate | ||
|
||
|
||
diff --git a/tools/web-fuzzing-introspection/app/webapp/routes.py b/tools/web-fuzzing-introspection/app/webapp/routes.py | ||
index 5f09b3f..77b444a 100644 | ||
--- a/tools/web-fuzzing-introspection/app/webapp/routes.py | ||
+++ b/tools/web-fuzzing-introspection/app/webapp/routes.py | ||
@@ -932,6 +932,9 @@ def _convert_function_return_list(project_functions): | ||
function.return_type, | ||
'runtime_coverage_percent': | ||
function.runtime_code_coverage, | ||
+ 'function_signature': function.func_signature, | ||
+ 'source_line_begin': function.source_line_begin, | ||
+ 'source_line_end': function.source_line_end, | ||
}) | ||
return list_to_return | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters