This is an automated email from the ASF dual-hosted git repository.

blackdrag pushed a commit to branch indy_experiment_2
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit 821b53893e288178ec18fefe73660809da9009ec
Author: Jochen Theodorou <[email protected]>
AuthorDate: Sat Jan 17 05:20:07 2026 +0100

    IndyUsageTest will no longer work since there will be no IndyInterface 
lines in the trace anymore
---
 src/test/groovy/indy/IndyUsageTest.groovy | 40 -------------------------------
 1 file changed, 40 deletions(-)

diff --git a/src/test/groovy/indy/IndyUsageTest.groovy 
b/src/test/groovy/indy/IndyUsageTest.groovy
deleted file mode 100644
index 5e95ca7724..0000000000
--- a/src/test/groovy/indy/IndyUsageTest.groovy
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- *  Licensed to the Apache Software Foundation (ASF) under one
- *  or more contributor license agreements.  See the NOTICE file
- *  distributed with this work for additional information
- *  regarding copyright ownership.  The ASF licenses this file
- *  to you under the Apache License, Version 2.0 (the
- *  "License"); you may not use this file except in compliance
- *  with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing,
- *  software distributed under the License is distributed on an
- *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- *  specific language governing permissions and limitations
- *  under the License.
- */
-package indy
-
-import org.junit.Test
-
-import static groovy.test.GroovyAssert.assertScript
-
-final class IndyUsageTest {
-
-    @Test
-    void testIndyIsUsedNested() {
-        assertScript '''
-            def foo() {
-                 throw new Exception('blah')
-            }
-            try {
-                foo()
-            } catch (e) {
-                assert e.stackTrace.find { it.className == 
'org.codehaus.groovy.vmplugin.v8.IndyInterface' }
-            }
-        '''
-    }
-}

Reply via email to