-
Notifications
You must be signed in to change notification settings - Fork 215
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
Remove old fuzzer logic #2896
Merged
ddoktorski
merged 1 commit into
2051-new-fuzzer-architecture-4-cheatcode
from
2051-new-fuzzer-architecture-5
Feb 18, 2025
Merged
Remove old fuzzer logic #2896
ddoktorski
merged 1 commit into
2051-new-fuzzer-architecture-4-cheatcode
from
2051-new-fuzzer-architecture-5
Feb 18, 2025
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
Merged
7e192cd
to
ddf09c5
Compare
3a18d4c
to
6a9a27c
Compare
cptartur
approved these changes
Feb 10, 2025
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.
🙏
6a9a27c
to
006ae51
Compare
franciszekjob
approved these changes
Feb 11, 2025
Draggu
approved these changes
Feb 13, 2025
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.
That feels good
fd46db5
to
c546212
Compare
006ae51
to
481f7c9
Compare
c546212
to
ff3639b
Compare
6afd563
to
0826356
Compare
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]>
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 `Fuzzable` trait with implementation for basic types 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 --> - 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)
b3245f6
to
80d41fa
Compare
0826356
to
3753fb1
Compare
bd7e7aa
into
2051-new-fuzzer-architecture-4-cheatcode
38 checks passed
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
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)