-
Notifications
You must be signed in to change notification settings - Fork 34
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
Failing Tests for testMxpRandomAdvanced()
#1444
Labels
bug
Something isn't working
Comments
Example 1 (Bytecode)
Example 2
Example 3
|
See also #1537 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The test
testMxpRandomAdvanced()
describes a large number of potential tests, of which one is run as determined by a fixed random seed. Since the random seed is shared between tests in the same file, it means that the order in which this test is run will determine exactly which parameters are used for it. For example, if a new test is added beforetestMxpRandomAdvanced
then this will change the parameters used to generate its test.It turns out, for some parameters, that
testMxpRandomAdvanced
fails. Some examples (with their parameters) are given below.Example 1
instructionCount
= 2INSTRUCTION_COUNT_INIT
= 3Example 2
instructionCount
= 3INSTRUCTION_COUNT_INIT
= 3Example 3
instructionCount = 5
INSTRUCTION_COUNT_INIT = 5
The text was updated successfully, but these errors were encountered: