summaryrefslogtreecommitdiff
path: root/dev-java/rhino/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-java/rhino/files
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-java/rhino/files')
-rw-r--r--dev-java/rhino/files/rhino-1.9.0-ClassCompilerTest.patch51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-java/rhino/files/rhino-1.9.0-ClassCompilerTest.patch b/dev-java/rhino/files/rhino-1.9.0-ClassCompilerTest.patch
deleted file mode 100644
index c5ca774b3c51..000000000000
--- a/dev-java/rhino/files/rhino-1.9.0-ClassCompilerTest.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-testMainMethodExecutesWithoutError
- tags: []
- uniqueId: [engine:junit-vintage]/[runner:org.mozilla.javascript.tests.ClassCompilerTest]/[test:testMainMethodExecutesWithoutError(org.mozilla.javascript.tests.ClassCompilerTest)]
- parent: [engine:junit-vintage]/[runner:org.mozilla.javascript.tests.ClassCompilerTest]
- source: MethodSource [className = 'org.mozilla.javascript.tests.ClassCompilerTest', methodName = 'testMainMethodExecutesWithoutError', methodParameterTypes = '']
- caught: java.lang.VerifyError: Local variable table overflow
- Exception Details:
- Location:
- testMain.init0(Lorg/mozilla/javascript/JSDescriptor;)Lorg/mozilla/javascript/JSDescriptor; @18: istore_2
- Reason:
- Local index 2 is invalid
- Bytecode:
- 0000000: bb00 0959 bb00 0b59 b700 0f01 2a05 bd00
- 0000010: 1103 3d59 1c12 1353 8402 0159 1c12 1553
- 0000020: 8402 0105 bc04 033d 591c 0354 8402 0159
- 0000030: 1c03 5484 0201 0304 0403 0303 0303 0312
- 0000040: 1712 1903 121a 0103 0503 0303 0303 0301
- 0000050: 0103 b700 1d4c 2b59 05bd 0009 033d 591c
- 0000060: 2bb8 0020 5384 0201 591c 2bb8 0023 5384
- 0000070: 0201 b800 29b5 002d b0
- Stackmap Table:
-
- at java.base/java.lang.Class.getDeclaredMethods0(Native Method)
- at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3011)
- at java.base/java.lang.Class.getMethodsRecursive(Class.java:3147)
- at java.base/java.lang.Class.getMethod0(Class.java:3132)
- at java.base/java.lang.Class.getMethod(Class.java:2164)
- at org.mozilla.javascript.tests.ClassCompilerTest.testMainMethodExecutesWithoutError(ClassCompilerTest.java:93)
- at java.base/java.lang.reflect.Method.invoke(Method.java:565)
- duration: 15 ms
- status: ✘ FAILED
-
---- a/src/test/java/org/mozilla/javascript/tests/ClassCompilerTest.java
-+++ b/src/test/java/org/mozilla/javascript/tests/ClassCompilerTest.java
-@@ -10,6 +10,7 @@ import java.lang.reflect.InvocationTargetException;
- import java.lang.reflect.Method;
- import java.util.ArrayList;
- import org.junit.Test;
-+import org.junit.Ignore;
- import org.mozilla.javascript.CompilerEnvirons;
- import org.mozilla.javascript.DefiningClassLoader;
- import org.mozilla.javascript.optimizer.ClassCompiler;
-@@ -68,7 +69,7 @@ public class ClassCompilerTest {
- }
- }
-
-- @Test
-+ @Test @Ignore
- public void testMainMethodExecutesWithoutError()
- throws IllegalAccessException, InvocationTargetException {
- var compilerEnv = new CompilerEnvirons();