Skip to content

Commit 52c9159

Browse files
committed
Remove awaits fix from evil JNA native tests
These tests were marked as awaits fix due to JNA requiring a version of glibc greater than or equal to version 2.14. Since we still support systems that would not have this version, we have released our own JNA dependency that is built to support earlier versions of glibc. This commit removes some await fixes that were added to tests that failed as a result of this situation.
1 parent 32b2caa commit 52c9159

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

qa/evil-tests/src/test/java/org/elasticsearch/bootstrap/EvilJNANativesTests.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333

3434
public class EvilJNANativesTests extends ESTestCase {
3535

36-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/23640")
3736
public void testSetMaximumNumberOfThreads() throws IOException {
3837
if (Constants.LINUX) {
3938
final List<String> lines = Files.readAllLines(PathUtils.get("/proc/self/limits"));
@@ -56,7 +55,6 @@ public void testSetMaximumNumberOfThreads() throws IOException {
5655
}
5756
}
5857

59-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/23640")
6058
public void testSetMaxSizeVirtualMemory() throws IOException {
6159
if (Constants.LINUX) {
6260
final List<String> lines = Files.readAllLines(PathUtils.get("/proc/self/limits"));

0 commit comments

Comments
 (0)