-
Notifications
You must be signed in to change notification settings - Fork 26
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
bug: failing MXP
Tests
#1538
Comments
This disables three tests which lead to an overflow of the `hub/RETURN_DATA_OFFSET` column during trace generation. See #1538.
And we begin tracing this back. Problematic value comes from here (
Which looks to me rather like it was generated from the stack?. Yes, and we can see where our magic
This is in |
So, the sequence is:
@letypequividelespoubelles How would you want to proceed from here? Seems like we could use |
* Remove non-determinism from tests This removes non-determinism from the tests caused by a shared RNG across tests. * Disable tests with `RETURN_DATA_OFFSET` overflow This disables three tests which lead to an overflow of the `hub/RETURN_DATA_OFFSET` column during trace generation. See #1538.
@letypequividelespoubelles I think we can close this now right? |
yes I think @OlivierBBB 's #1545 fixed it |
Three tests in
MxpTest
have been@Disabled
since they are all failing with this error:The value
9223372036854775807
is0x7FFFFFFFFFFFFFFF
and equalsLong.MAX_VALUE
. For the record, the tests are:testMxpRandomTriggerMxpx()
testRandomMxpInstructionsFollowedByTriggeringRoob()
testMxpRandomAdvanced()
The text was updated successfully, but these errors were encountered: