-
Notifications
You must be signed in to change notification settings - Fork 123
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
Update test vectors #733
Update test vectors #733
Conversation
Hmm, I think I know what's going on... It's as simple as having a test name substring collision...
But since the So I think the following patch should make things stable again (after running another |
This change ensures that running the `TestReplace` test will not run any other tests at the same time. It is necessary to run tests separately and sequentially when generating test vectors. Otherwise, the random data generator will not be sampled deterministically for a given 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.
Nice, LGTM 🎉
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.
Stricter matching vs. renaming is a good idea, I like the second approach too 👍
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.
LGTM!
Includes files modified from running
make test-vector-check
.