-
Notifications
You must be signed in to change notification settings - Fork 3
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
Support for dumping variables using 'printf' for testing scenarios where std is not avalible. #3
Open
FractalFir
wants to merge
22
commits into
cbeuw:master
Choose a base branch
from
FractalFir:master
base: master
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.
Open
Changes from 6 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
b15c412
Draft version of formatting using printf(does not support enums yet, …
FractalFir cd79ada
Printf dumper is now toglable from the command line, and can display …
FractalFir 293bc43
Added support for formatting larger tuples.
FractalFir 864d04b
Cleanup, comments, small fixes for large tuples
FractalFir 7119f94
Added implementations of the formatting trait for even larger tuples
FractalFir 1dc3061
Fixed a small issue with array formatting
FractalFir 345ce26
made debug_printf an unsafe function. Implemented the PrintFDebug tra…
FractalFir 97ce8ec
Small fix to generated printf formatting
FractalFir 6d60354
Small fix to generated printf formatting
FractalFir 120bf6d
Small fix to 128 bit int formatting
FractalFir 38e581b
Fixed a couple of typos
FractalFir dc8c0ff
Merge branch 'cbeuw:master' into master
FractalFir 25ec83d
Fixed missing null terminators in enum display
FractalFir eaf5b10
Fixed printing of NaN values using printf printing the sign of a NaN.…
FractalFir c843fb6
Small fix
FractalFir 350b556
Update CITATION.cff
cbeuw 644e14b
Merge branch 'master' into master
FractalFir 8183b5a
FIxed issues with dumper caused by the merge.
FractalFir 87cb1c4
Some initial work on generating source files compatible with rust-gpu
FractalFir b3726ac
Misc fixes to the rustgpu support.
FractalFir e47e1cc
Fixes to formatting code for 'rust-gpu'
FractalFir bdce6d4
Started working on supporting disabling fuzzing enums and 128 bit int…
FractalFir 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
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
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
Oops, something went wrong.
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.
CLI stability is not a concern. So you could replace
-d
with a single enum flag with 3 options, defaulting toHashDumper