-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Simple C++ exceptions fuzzer #13485
Draft
kripken
wants to merge
47
commits into
main
Choose a base branch
from
fuzz-exceptions
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Simple C++ exceptions fuzzer #13485
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit
Hold shift + click to select a range
dd337f1
wip [ci skip]
kripken 39f9f56
work [ci skip]
kripken 09d5cc0
work [ci skip]
kripken 787c1db
work [ci skip]
kripken caad8f2
work [ci skip]
kripken e9df3bf
work [ci skip]
kripken c465d78
work [ci skip]
kripken 937583a
work [ci skip]
kripken 94e1114
work [ci skip]
kripken d086d10
work [ci skip]
kripken 81ca4dc
work [ci skip]
kripken 26fe71d
work [ci skip]
kripken 68477a5
work [ci skip]
kripken f1c312f
work [ci skip]
kripken 216a356
work
kripken be28f34
cleanup
kripken efa5b9f
fix [ci skip]
kripken 0825293
Merge remote-tracking branch 'origin/master' into fuzz-exceptions
kripken 1546c2d
wip
kripken 351ff2e
add reducer
kripken f6d2066
reducer
kripken 8e99f9d
cleanup [ci skip]
kripken f0a3757
cleaner [ci skip]
kripken c025832
reduce initial values too [ci skip]
kripken af844c1
more [ci skip]
kripken d564d72
more [ci skip]
kripken b79f209
undo [ci skip]
kripken 6c033f0
only compile to an object for now, as libc++abi now fails [ci skip]
kripken 40ec92d
Allow reduction for a specific error [ci skip]
kripken bb7a8d6
calls [ci skip]
kripken 141fe6e
catch(int) [ci skip]
kripken 7990eb3
raii [ci skip]
kripken 4304f13
nested statements [ci skip]
kripken 6df96ef
more catches [ci skip]
kripken 8efcfc4
more
kripken 907aca6
Merge remote-tracking branch 'origin/master' into fuzz-exceptions
kripken 264b364
Merge remote-tracking branch 'origin/master' into fuzz-exceptions
kripken 7438873
more testing + formatting [ci skip]
kripken e3f4c03
Merge remote-tracking branch 'origin/master' into fuzz-exceptions
kripken a6f43e3
Test execution as well [ci skip]
kripken a25edb3
fuzz execution as well [ci skip]
kripken 0e0c8f3
work [ci skip]
kripken 65609fc
llvm [ci skip]
kripken 742e9c4
if-else [ci skip]
kripken c62403a
work
kripken 297e70a
Merge remote-tracking branch 'origin/master' into fuzz-exceptions
kripken 023d93f
updates [ci skip]
kripken File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
work [ci skip]
- Loading branch information
commit 787c1dbb932c7987b84571d7645c6f0bc02847f3
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
It looks like the structs aren't actually used for anything?
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.
Yes, they are for future use.