diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-08 09:40:51 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-08 09:40:51 +0700 |
commit | 37bee450be28a5b5b99ef025b2f4508e9400f226 (patch) | |
tree | 9cc0bbeaf44a83354c43a263c2cf68c8402740f4 /tests | |
parent | 3d7dd3d66ed30faeac4ee54b3f1ae2cc164f9371 (diff) | |
download | aspectj-37bee450be28a5b5b99ef025b2f4508e9400f226.tar.gz aspectj-37bee450be28a5b5b99ef025b2f4508e9400f226.zip |
Replace old by new AspectJ GitHub URL
github.com/eclipse/org.aspectj -> github.com/eclipse-aspectj/aspectj
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'tests')
9 files changed, 18 insertions, 18 deletions
diff --git a/tests/bugs1920/github_162/InterfaceWithInnerClass.java b/tests/bugs1920/github_162/InterfaceWithInnerClass.java index f26975cc0..507bef54f 100644 --- a/tests/bugs1920/github_162/InterfaceWithInnerClass.java +++ b/tests/bugs1920/github_162/InterfaceWithInnerClass.java @@ -3,7 +3,7 @@ import org.aspectj.lang.annotation.Before; import org.aspectj.lang.JoinPoint; /** - * https://github.com/eclipse/org.aspectj/issues/162 + * https://github.com/eclipse-aspectj/aspectj/issues/162 */ public interface InterfaceWithInnerClass { public class ImplicitlyStatic { diff --git a/tests/bugs1920/github_20/ParenthesisedAJKeywords.java b/tests/bugs1920/github_20/ParenthesisedAJKeywords.java index 1ba013c57..477eac5b0 100644 --- a/tests/bugs1920/github_20/ParenthesisedAJKeywords.java +++ b/tests/bugs1920/github_20/ParenthesisedAJKeywords.java @@ -1,5 +1,5 @@ /** - * https://github.com/eclipse/org.aspectj/issues/20 + * https://github.com/eclipse-aspectj/aspectj/issues/20 */ public class ParenthesisedAJKeywords { public static void main(String[] args) { diff --git a/tests/bugs198/github_105/Application.java b/tests/bugs198/github_105/Application.java index bcf4f5624..e32bd0a88 100644 --- a/tests/bugs198/github_105/Application.java +++ b/tests/bugs198/github_105/Application.java @@ -6,7 +6,7 @@ import java.lang.annotation.Annotation; * This fails in AspectJ 1.9.5 to 1.9.8.RC2 due to a removed safeguard in JDT Core, * if the aspect is in a separate library on the aspectpath. * <p> - * See https://github.com/eclipse/org.aspectj/issues/105 + * See https://github.com/eclipse-aspectj/aspectj/issues/105 */ @FooAnnotation public class Application { diff --git a/tests/features164/declareMixin/CaseEConcurrent.java b/tests/features164/declareMixin/CaseEConcurrent.java index 874f249d5..e52ad7101 100644 --- a/tests/features164/declareMixin/CaseEConcurrent.java +++ b/tests/features164/declareMixin/CaseEConcurrent.java @@ -1,5 +1,5 @@ // TESTING: multiple instances causing factory invocation multiple times (but is cached correctly) -// Concurrency fix regression test for https://github.com/eclipse/org.aspectj/issues/198 +// Concurrency fix regression test for https://github.com/eclipse-aspectj/aspectj/issues/198 import org.aspectj.lang.annotation.*; import java.util.concurrent.atomic.AtomicInteger; @@ -35,7 +35,7 @@ public class CaseEConcurrent { } // Helper methods 'doSomething' and 'callMe' help to produce byte code similar to what we need in order to fix - // https://github.com/eclipse/org.aspectj/issues/198. If necessary, just temporarily uncomment, compile and analyse + // https://github.com/eclipse-aspectj/aspectj/issues/198. If necessary, just temporarily uncomment, compile and analyse // the byte code, e.g. with JDK tool 'javap -v'. /* public void doSomething() { diff --git a/tests/src/test/java/org/aspectj/systemtest/ajc164/DeclareMixinTests.java b/tests/src/test/java/org/aspectj/systemtest/ajc164/DeclareMixinTests.java index 1c312d18b..4ae5fca68 100644 --- a/tests/src/test/java/org/aspectj/systemtest/ajc164/DeclareMixinTests.java +++ b/tests/src/test/java/org/aspectj/systemtest/ajc164/DeclareMixinTests.java @@ -68,7 +68,7 @@ public class DeclareMixinTests extends org.aspectj.testing.XMLBasedAjcTestCase { } // multiple instances causing factory invocation multiple times (but is cached), concurrent case - // see https://github.com/eclipse/org.aspectj/issues/198 + // see https://github.com/eclipse-aspectj/aspectj/issues/198 public void testCaseEConcurrent() { runTest("casee_concurrent"); } diff --git a/tests/src/test/java/org/aspectj/systemtest/ajc199/Bugs199Tests.java b/tests/src/test/java/org/aspectj/systemtest/ajc199/Bugs199Tests.java index 9d1dc6c6d..6ec1291d4 100644 --- a/tests/src/test/java/org/aspectj/systemtest/ajc199/Bugs199Tests.java +++ b/tests/src/test/java/org/aspectj/systemtest/ajc199/Bugs199Tests.java @@ -49,7 +49,7 @@ public class Bugs199Tests extends XMLBasedAjcTestCase { } public void testAsyncProceedNestedAroundAdviceThreadPool_gh128() { - // TODO: future improvement, see https://github.com/eclipse/org.aspectj/issues/141 + // TODO: future improvement, see https://github.com/eclipse-aspectj/aspectj/issues/141 // runTest("asynchronous proceed for nested around-advice (@AspectJ, thread pool)"); } diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc164/declareMixin.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc164/declareMixin.xml index c397fae87..a9da3cafb 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc164/declareMixin.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc164/declareMixin.xml @@ -61,7 +61,7 @@ <run class="CaseEConcurrent"> <stdout ordered="no"> <!-- - Without the concurrency fix from https://github.com/eclipse/org.aspectj/issues/198, each delegate factory + Without the concurrency fix from https://github.com/eclipse-aspectj/aspectj/issues/198, each delegate factory would be invoked twice --> <line text="Delegate factory invoked for CaseEConcurrent instance: a"/> diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc1920/ajc1920.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc1920/ajc1920.xml index 98a255088..37ac7e9a3 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc1920/ajc1920.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc1920/ajc1920.xml @@ -176,7 +176,7 @@ </run> </ajc-test> - <!-- RuntimeException in BcelWeaver, see https://github.com/eclipse/org.aspectj/issues/190 --> + <!-- RuntimeException in BcelWeaver, see https://github.com/eclipse-aspectj/aspectj/issues/190 --> <ajc-test dir="bugs1920/github_190" vm="1.5" title="switch with Integer.MAX_VALUE case"> <compile files="SwitchCaseWith_Integer_MAX_VALUE.java" options="-1.5 -showWeaveInfo"> <message kind="weave" text="Join point 'method-execution(java.lang.String SwitchCaseWith_Integer_MAX_VALUE.switchTest(int))'"/> @@ -191,7 +191,7 @@ <!-- 'Syntax error, insert "Expression" to complete Expression' when compiling parenthesised expressions - containing AspectJ keywords, e.g. '(before)', see https://github.com/eclipse/org.aspectj/issues/20 + containing AspectJ keywords, e.g. '(before)', see https://github.com/eclipse-aspectj/aspectj/issues/20 --> <ajc-test dir="bugs1920/github_20" vm="1.5" title="parenthesised expression with AspectJ keyword"> <compile files="ParenthesisedAJKeywords.java" options="-1.5 -showWeaveInfo"/> @@ -210,7 +210,7 @@ <!-- 'inner aspects must be static' when compiling an interface with an inner aspect which was not explicitly declared - static, see https://github.com/eclipse/org.aspectj/issues/162 + static, see https://github.com/eclipse-aspectj/aspectj/issues/162 --> <ajc-test dir="bugs1920/github_162" vm="1.5" title="inner aspect of interface is implicitly static"> <compile files="InterfaceWithInnerClass.java" options="-1.5 -showWeaveInfo"> @@ -228,7 +228,7 @@ <!-- When compiling aspect and target class together, matching works as expected, - see https://github.com/eclipse/org.aspectj/issues/24 + see https://github.com/eclipse-aspectj/aspectj/issues/24 --> <ajc-test dir="bugs1920/github_24" vm="1.5" title="exact array type matching, aspect compiled together with target class"> <compile files="ExactlyMatchingAspect.aj MaybeMissingClass.java" options="-1.5 -showWeaveInfo"> @@ -260,7 +260,7 @@ <!-- When compiling aspect and target class separately, too many joinpoints are matched, - see https://github.com/eclipse/org.aspectj/issues/24 + see https://github.com/eclipse-aspectj/aspectj/issues/24 --> <ajc-test dir="bugs1920/github_24" vm="1.5" title="exact array type matching, aspect compiled separately from target class"> <compile files="ExactlyMatchingAspect.aj" options="-1.5 -showWeaveInfo" outjar="aspect.jar"> @@ -296,7 +296,7 @@ <!-- When compiling aspect and target class together, too many joinpoints are matched, - see https://github.com/eclipse/org.aspectj/issues/24 + see https://github.com/eclipse-aspectj/aspectj/issues/24 --> <ajc-test dir="bugs1920/github_24" vm="1.5" title="fuzzy array type matching, aspect compiled together with target class"> <compile files="FuzzilyMatchingAspect.aj MaybeMissingClass.java" options="-1.5 -showWeaveInfo"> @@ -328,7 +328,7 @@ <!-- When compiling aspect and target class separately, too many joinpoints are matched, - see https://github.com/eclipse/org.aspectj/issues/24 + see https://github.com/eclipse-aspectj/aspectj/issues/24 --> <ajc-test dir="bugs1920/github_24" vm="1.5" title="fuzzy array type matching, aspect compiled separately from target class"> <compile files="FuzzilyMatchingAspect.aj" options="-1.5 -showWeaveInfo" outjar="aspect.jar"> @@ -362,7 +362,7 @@ </ajc-test> <!-- - https://github.com/eclipse/org.aspectj/issues/214 + https://github.com/eclipse-aspectj/aspectj/issues/214 https://github.com/mojohaus/aspectj-maven-plugin/issues/164 Problem with multiple, subsequent weaving steps and '-Xlint:warning' or '-Xlint:unorderedAdviceAtShadow=warning' java.lang.ArrayIndexOutOfBoundsException: 1 diff --git a/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml b/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml index be4957134..62861cfea 100644 --- a/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml +++ b/tests/src/test/resources/org/aspectj/systemtest/ajc198/ajc198.xml @@ -3,7 +3,7 @@ <suite> - <!-- https://github.com/eclipse/org.aspectj/issues/68 --> + <!-- https://github.com/eclipse-aspectj/aspectj/issues/68 --> <ajc-test dir="bugs198/github_68" vm="11" title="correctly weave code using constant-dynamic"> <compile files="Application.java MyAspect.aj" options="-11" inpath="condy.jar"/> <run class="Application"> @@ -16,7 +16,7 @@ </run> </ajc-test> - <!-- https://github.com/eclipse/org.aspectj/issues/105 --> + <!-- https://github.com/eclipse-aspectj/aspectj/issues/105 --> <ajc-test dir="bugs198/github_105" vm="8" title="ITD annotation with mandatory parameter via aspectpath"> <compile files="FooAnnotation.java BarAnnotation.java FooAspect.aj" options="-8" outjar="aspect.jar"/> <compile files="Application.java" options="-8" aspectpath="aspect.jar"/> |