Ensure we can load the native library or fail the build (#11262)
Motivation: We used assumeTrue(...) in some places before to detect if we could load the native library but this could lead to the sitation that we not notice if we break native loading. Modifications: Always fail if we cant load the native library Result: Ensure we not cause any regression in the native loading code in the future
This commit is contained in:
parent
8a03a1db7d
commit
6e866317d2
@ -23,6 +23,6 @@ public class EpollKQueueIovArrayTest extends IovArrayTest {
|
||||
|
||||
@BeforeClass
|
||||
public static void loadNative() {
|
||||
Assume.assumeTrue(Epoll.isAvailable());
|
||||
Epoll.ensureAvailability();
|
||||
}
|
||||
}
|
||||
|
@ -27,12 +27,11 @@ import java.io.IOException;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertNotEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.junit.Assume.assumeTrue;
|
||||
|
||||
public class EpollSocketTest extends SocketTest<LinuxSocket> {
|
||||
@BeforeClass
|
||||
public static void loadJNI() {
|
||||
assumeTrue(Epoll.isAvailable());
|
||||
Epoll.ensureAvailability();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
@ -22,12 +22,10 @@ import java.io.IOException;
|
||||
import java.net.InetAddress;
|
||||
import java.net.InetSocketAddress;
|
||||
|
||||
import static org.junit.Assume.assumeTrue;
|
||||
|
||||
public class LinuxSocketTest {
|
||||
@BeforeClass
|
||||
public static void loadJNI() {
|
||||
assumeTrue(Epoll.isAvailable());
|
||||
Epoll.ensureAvailability();
|
||||
}
|
||||
|
||||
@Test(expected = IOException.class)
|
||||
|
@ -16,13 +16,12 @@
|
||||
package io.netty.channel.kqueue;
|
||||
|
||||
import io.netty.channel.unix.tests.IovArrayTest;
|
||||
import org.junit.Assume;
|
||||
import org.junit.BeforeClass;
|
||||
|
||||
public class KQueueIovArrayTest extends IovArrayTest {
|
||||
|
||||
@BeforeClass
|
||||
public static void loadNative() {
|
||||
Assume.assumeTrue(KQueue.isAvailable());
|
||||
KQueue.ensureAvailability();
|
||||
}
|
||||
}
|
||||
|
@ -25,12 +25,11 @@ import org.junit.Test;
|
||||
import java.io.IOException;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
import static org.junit.Assume.assumeTrue;
|
||||
|
||||
public class KQueueSocketTest extends SocketTest<BsdSocket> {
|
||||
@BeforeClass
|
||||
public static void loadJNI() {
|
||||
assumeTrue(KQueue.isAvailable());
|
||||
KQueue.ensureAvailability();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
x
Reference in New Issue
Block a user