-
Notifications
You must be signed in to change notification settings - Fork 555
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
Refactor fuzzingsession #4374
base: master
Are you sure you want to change the base?
Refactor fuzzingsession #4374
Conversation
2b946a8
to
22a2d5d
Compare
start_time = time.time() | ||
result = self._run_common() | ||
if result: | ||
return result |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably worth moving the metric from #4336 to a decorator as you pointed out, we are losing instrumentation in this early return.
return result | ||
|
||
# TODO(metzman): Move this section into seperate functions for engine and | ||
# blackbox fuzzing instead of sandwhiching with ifs for engine fuzzing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this being done at this PR, or in a follow up one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A following one. That's generally what TODOs mean.
a714059
to
f4df493
Compare
Start preparing to seperate code dealing with engine and non-engine fuzzing.