This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Fuzz testing for nomination pools #12002
Merged
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
1cf2380
some additional tests and stuff
kianenigma a07d2db
make sanity public
kianenigma 71012c2
Merge branch 'master' of github.com:paritytech/substrate into kiz-poo…
kianenigma 2bbccc4
add some sort of fuzz test for pools
kianenigma 75b1ebe
breaks every now and then
kianenigma 3404b76
breaks every now and then
kianenigma 0b5cd9f
IT WORKS AND PASSES 100k TESTS
kianenigma 95d4d1d
cleanup
kianenigma a3cdac8
safe id addition
kianenigma f30a976
fix assert_eq_error_rate
kianenigma dbbbb2d
Master.into()
kianenigma 392d2d1
master
kianenigma 1738a1f
Merge branch 'master' of github.com:paritytech/substrate into kiz-poo…
kianenigma 637a4f4
Update frame/nomination-pools/src/tests.rs
kianenigma e49613c
Update frame/nomination-pools/src/tests.rs
kianenigma bb1a752
add some doc
kianenigma adfa479
Merge branch 'kiz-pools-battle-testing-2' of github.com:paritytech/su…
kianenigma c759723
Fix
kianenigma 94ae1d4
".git/.scripts/fmt.sh" 1
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
IT WORKS AND PASSES 100k TESTS
- Loading branch information
commit 0b5cd9f14d7138ef7462360f0eb95e8798e643fe
There are no files selected for viewing
This file contains hidden or 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 hidden or 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.
Good follow up:
From experience I can tell you that it is a good idea to create a random seed, print it, and add the possibility to overide it via env variable.
Then you always have a different set of tests, but if it fails, you can reproduce by using the printed seed.
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.
excellent idea, I actually have this in my code as a commented code that: If you want reproducible output, do this and that, but using a seed and env var makes a whole lot more sense.