-
Notifications
You must be signed in to change notification settings - Fork 217
Add Fuzzable
trait
#2893
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
Merged
Merged
Add Fuzzable
trait
#2893
Conversation
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 was referenced Jan 29, 2025
Merged
0a20bd7
to
d54d84b
Compare
41b9837
to
54bec64
Compare
cptartur
reviewed
Feb 10, 2025
cptartur
approved these changes
Feb 10, 2025
Draggu
reviewed
Feb 13, 2025
e43ff4a
to
0191418
Compare
54bec64
to
9383ef2
Compare
franciszekjob
approved these changes
Feb 17, 2025
RichoKD
pushed a commit
to RichoKD/starknet-foundry
that referenced
this pull request
Feb 17, 2025
<!-- Reference any GitHub issues resolved by this PR --> Towards foundry-rs#2051 ## Introduced changes <!-- A brief description of the changes --> - Added a cheatcode for generating random number that is used for creating data for fuzz tests This PR is part of the stack: ➡️ Add `generate_arg` cheatcode (foundry-rs#2892) -- Add `Fuzzable` trait (foundry-rs#2893) -- Move statements logic to separate function (foundry-rs#2894) -- Add new fuzzer logic to plugin (foundry-rs#2895) -- Add cheatcode to save fuzzer input (foundry-rs#2923) -- Remove old fuzzer logic (foundry-rs#2896) -- Add fuzzer tests with multiple attributes (foundry-rs#2898) -- Update fuzzer documentation and changelog (foundry-rs#2899) --------- Co-authored-by: Franciszek Job <[email protected]> Co-authored-by: Piotr Figiela <[email protected]>
9383ef2
to
f946f11
Compare
f946f11
to
b3d1ef4
Compare
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 18, 2025
<!-- Reference any GitHub issues resolved by this PR --> Towards #2051 ## Introduced changes <!-- A brief description of the changes --> - Simple refactor to extract common logic between current `append_config_statements` function and `append_fuzzer_config_statements` added in the next PR This PR is part of the stack: -- Add `generate_arg` cheatcode (#2892) -- Add `Fuzzable` trait (#2893) ➡️ Move statements logic to separate function (#2894) -- Add new fuzzer logic to plugin (#2895) -- Add cheatcode to save fuzzer input (#2923) -- Remove old fuzzer logic (#2896) -- Add fuzzer tests with multiple attributes (#2898) -- Update fuzzer documentation and changelog (#2899)
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 18, 2025
<!-- Reference any GitHub issues resolved by this PR --> Towards #2051 ## Introduced changes <!-- A brief description of the changes --> - Added new plugin logic for fuzzer attribute - Split `#[fuzzer]` attribute into `#[__fuzzer_config]` and `#[__fuzzer_wrapper]` - Modified tests execution for fuzz tests This PR is part of the stack: -- Add `generate_arg` cheatcode (#2892) -- Add `Fuzzable` trait (#2893) -- Move statements logic to separate function (#2894) ➡️ Add new fuzzer logic to plugin (#2895) -- Add cheatcode to save fuzzer input (#2923) -- Remove old fuzzer logic (#2896) -- Add fuzzer tests with multiple attributes (#2898) -- Update fuzzer documentation and changelog (#2899)
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 18, 2025
<!-- Reference any GitHub issues resolved by this PR --> Towards #2051 This PR is part of the stack: -- Add `generate_arg` cheatcode (#2892) -- Add `Fuzzable` trait (#2893) -- Move statements logic to separate function (#2894) -- Add new fuzzer logic to plugin (#2895) -- Add cheatcode to save fuzzer input (#2923) -- Remove old fuzzer logic (#2896) ➡️ Add fuzzer tests with multiple attributes (#2898) -- Update fuzzer documentation and changelog (#2899) --------- Co-authored-by: Franciszek Job <[email protected]> Co-authored-by: Piotr Figiela <[email protected]>
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 19, 2025
<!-- Reference any GitHub issues resolved by this PR --> Towards #2051 This PR is part of the stack: -- Add `generate_arg` cheatcode (#2892) -- Add `Fuzzable` trait (#2893) -- Move statements logic to separate function (#2894) -- Add new fuzzer logic to plugin (#2895) -- Add cheatcode to save fuzzer input (#2923) -- Remove old fuzzer logic (#2896) -- Add fuzzer tests with multiple attributes (#2898) ➡️ Update fuzzer documentation and changelog (#2899) --------- Co-authored-by: Artur Michałek <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Towards #2051
Introduced changes
Fuzzable
trait with implementation for basic typesThis PR is part of the stack:
-- Add
generate_arg
cheatcode (#2892)➡️ Add
Fuzzable
trait (#2893)-- Move statements logic to separate function (#2894)
-- Add new fuzzer logic to plugin (#2895)
-- Add cheatcode to save fuzzer input (#2923)
-- Remove old fuzzer logic (#2896)
-- Add fuzzer tests with multiple attributes (#2898)
-- Update fuzzer documentation and changelog (#2899)