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 a reference to unused SolidityFixedFeeRegistrar #12634
Remove a reference to unused SolidityFixedFeeRegistrar #12634
Conversation
| @@ -279,7 +279,6 @@ test_suite* init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) | |||
| "ABIDecoderTest", | |||
| "ABIEncoderTest", | |||
| "SolidityAuctionRegistrar", | |||
| "SolidityFixedFeeRegistrar", | |||
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.
We still have it under externalTests/FixedFeeRegistrar. Not sure why these suites are disabled though (i.e. failures, slowdowns, or maybe they already run separately?) so I'm not sure if we should update the path or remove it.
BTW, what's the problem with it on Windows? What are we missing that it does not fail in CI?
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.
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.
what's the problem with it on Windows
The problem was in Debug configuration (Windows should not really be relevant indeed), because of the failing assert.
Maybe I should put it a way around, and say that the problem was that tests were succeeding in non-Debug configurations because assert was disabled there :-).
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.
Oh, really? We should definitely have plain asserts enabled, even if we generally avoid them. That can be done separately though: #12641.
|
I mistakenly merged it before merging the base PR so it went into the wrong branch. Reopened as #12642. |


This fixes
solteston Windows in Debug configuration.