Skip to content

Commit

Permalink
Temporary disable the check for KQueue as there is issue with MacOS n…
Browse files Browse the repository at this point in the history
…atives (#2533)

More information netty/netty#12865
  • Loading branch information
violetagg committed Oct 10, 2022
1 parent 3b418a5 commit 4db6eff
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -24,6 +24,7 @@
import io.netty5.channel.epoll.Epoll;
import io.netty5.channel.kqueue.KQueue;
import io.netty5.channel.nio.NioHandler;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;
Expand Down Expand Up @@ -206,6 +207,9 @@ void testEpollIsAvailable() {
assertThat(Epoll.isAvailable()).isTrue();
}

// Temporary disable the check for KQueue as there is issue with MacOS natives
// More information https://github.com/netty/netty/pull/12865
@Disabled
@Test
@EnabledOnOs(OS.MAC)
void testKQueueIsAvailable() {
Expand Down

0 comments on commit 4db6eff

Please sign in to comment.