-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
Fix build on OpenBSD i386 #12142
Fix build on OpenBSD i386 #12142
Conversation
1be9a7b
to
8689b80
Compare
8689b80
to
ce3ecb0
Compare
@@ -28,6 +31,12 @@ public MultiGetManyKeysTest(final Integer numKeys) { | |||
this.numKeys = numKeys; | |||
} | |||
|
|||
@BeforeClass | |||
public static void beforeAllTest() { | |||
Assume.assumeFalse("We are not running this test on OpenBSD dues to memory constraints", |
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.
Is this a problem on both OpenBSD 32 bit and 64 bit? If this is about memory limits, perhaps instead use !Environment.is64Bit()
?
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.
Can you also fix the message please, as it is now 32bit specific and not OpenBSD specific @rhubner please?
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.
Just some questions about Assumptions for tests, otherwise LGTM.
ce3ecb0
to
0db3e46
Compare
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 now thanks.
0db3e46
to
3adfb8b
Compare
@ajkr has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
No description provided.