mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
Bug: https://bugs.gentoo.org/916487 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
34 lines
1.4 KiB
Diff
34 lines
1.4 KiB
Diff
There was 1 failure:
|
|
1) testIgnoreExistingField(net.bytebuddy.build.CachedReturnPluginOtherTest)
|
|
net.bytebuddy.pool.TypePool$Resolution$NoSuchTypeException: Cannot resolve type description for net.bytebuddy.build.CachedReturnPlugin$Advice$boolean
|
|
at net.bytebuddy.pool.TypePool$Resolution$Illegal.resolve(TypePool.java:190)
|
|
at net.bytebuddy.build.CachedReturnPlugin.<init>(CachedReturnPlugin.java:125)
|
|
at net.bytebuddy.build.CachedReturnPluginOtherTest.testIgnoreExistingField(CachedReturnPluginOtherTest.java:19)
|
|
|
|
FAILURES!!!
|
|
|
|
--- a/byte-buddy-dep/src/test/java/net/bytebuddy/build/CachedReturnPluginOtherTest.java
|
|
+++ b/byte-buddy-dep/src/test/java/net/bytebuddy/build/CachedReturnPluginOtherTest.java
|
|
@@ -6,13 +6,14 @@ import net.bytebuddy.dynamic.ClassFileLocator;
|
|
import net.bytebuddy.dynamic.DynamicType;
|
|
import org.hamcrest.CoreMatchers;
|
|
import org.junit.Test;
|
|
+import org.junit.Ignore;
|
|
|
|
import static org.hamcrest.CoreMatchers.sameInstance;
|
|
import static org.hamcrest.MatcherAssert.assertThat;
|
|
|
|
public class CachedReturnPluginOtherTest {
|
|
|
|
- @Test
|
|
+ @Test @Ignore
|
|
@SuppressWarnings("rawtypes")
|
|
public void testIgnoreExistingField() {
|
|
DynamicType.Builder<ExistingField> builder = new ByteBuddy().redefine(ExistingField.class);
|
|
@@ -73,4 +74,4 @@ public class CachedReturnPluginOtherTest {
|
|
return null;
|
|
}
|
|
}
|
|
-}
|
|
\ No newline at end of file
|
|
+}
|