From 35471a1a6fa64ac61829afa9f19634e11d537a8a Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Sun, 11 Nov 2018 07:18:21 +0100 Subject: [PATCH] Enable netty-tcnative shading test again (#8492) Motivation: We disabled the test at some point but it should work now without any problems. Modifications: Remove @Ignore from test. Result: Verify shading of netty-tcnative on CI. --- .../src/test/java/io/netty/testsuite/shading/ShadingIT.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/testsuite-shading/src/test/java/io/netty/testsuite/shading/ShadingIT.java b/testsuite-shading/src/test/java/io/netty/testsuite/shading/ShadingIT.java index 0f45fddef8..93edde6cdd 100644 --- a/testsuite-shading/src/test/java/io/netty/testsuite/shading/ShadingIT.java +++ b/testsuite-shading/src/test/java/io/netty/testsuite/shading/ShadingIT.java @@ -16,7 +16,6 @@ package io.netty.testsuite.shading; import io.netty.util.internal.PlatformDependent; -import org.junit.Ignore; import org.junit.Test; import java.lang.reflect.Method; @@ -34,7 +33,6 @@ public class ShadingIT { testShading0(SHADING_PREFIX2, className); } - @Ignore("Figure out why this sometimes fail on the CI") @Test public void testShadingTcnative() throws Exception { String className = "io.netty.handler.ssl.OpenSsl";