diff options
author | aclement <aclement> | 2006-01-10 09:46:59 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-01-10 09:46:59 +0000 |
commit | 1e8384ce1ff395f4e2e677f87bd801c9f0eb0d01 (patch) | |
tree | 63bfb24b9aea2eac9aed2b62d36c5802a5f1e002 /tests | |
parent | 53284da53f628e7c5071b87888f0624aa7528697 (diff) | |
download | aspectj-1e8384ce1ff395f4e2e677f87bd801c9f0eb0d01.tar.gz aspectj-1e8384ce1ff395f4e2e677f87bd801c9f0eb0d01.zip |
oops - bug number not quite right, fixed now.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs151/pr122458.aj (renamed from tests/bugs151/pr112458.aj) | 2 | ||||
-rw-r--r-- | tests/bugs151/pr122458_2.aj (renamed from tests/bugs151/pr112458_2.aj) | 6 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java | 4 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc151/ajc151.xml | 6 |
4 files changed, 9 insertions, 9 deletions
diff --git a/tests/bugs151/pr112458.aj b/tests/bugs151/pr122458.aj index d99f09c36..17b0a87a8 100644 --- a/tests/bugs151/pr112458.aj +++ b/tests/bugs151/pr122458.aj @@ -1,4 +1,4 @@ -public class pr112458<V> +public class pr122458<V> { public void setInnerClasses(InnerClass[] classes){}; diff --git a/tests/bugs151/pr112458_2.aj b/tests/bugs151/pr122458_2.aj index f17abfead..df7da50c3 100644 --- a/tests/bugs151/pr112458_2.aj +++ b/tests/bugs151/pr122458_2.aj @@ -1,15 +1,15 @@ -public class pr112458_2<V> +public class pr122458_2<V> { public void setInnerClasses(InnerClass[] classes){}; public static class InnerClass {} public static void main(String []argv) { - new pr112458_2(); + new pr122458_2(); } } aspect X { - before(pr112458_2.InnerClass[] ics): execution(void setInnerClasses(..)) && args(ics) { + before(pr122458_2.InnerClass[] ics): execution(void setInnerClasses(..)) && args(ics) { } } diff --git a/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java b/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java index fb6dfeaeb..92c4705b5 100644 --- a/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc151/Ajc151Tests.java @@ -18,8 +18,8 @@ import org.aspectj.testing.XMLBasedAjcTestCase; public class Ajc151Tests extends org.aspectj.testing.XMLBasedAjcTestCase { - public void testMemberTypesInGenericTypes_pr112458() { runTest("member types in generic types");} - public void testMemberTypesInGenericTypes_pr112458_2() { runTest("member types in generic types - 2");} + public void testMemberTypesInGenericTypes_pr122458() { runTest("member types in generic types");} + public void testMemberTypesInGenericTypes_pr122458_2() { runTest("member types in generic types - 2");} ///////////////////////////////////////// diff --git a/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml b/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml index ac841e12e..9a8b081a1 100644 --- a/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml +++ b/tests/src/org/aspectj/systemtest/ajc151/ajc151.xml @@ -4,12 +4,12 @@ <suite> <ajc-test dir="bugs151" title="member types in generic types"> - <compile files="pr112458.aj" options="-1.5 -emacssym"/> + <compile files="pr122458.aj" options="-1.5 -emacssym"/> </ajc-test> <ajc-test dir="bugs151" title="member types in generic types - 2"> - <compile files="pr112458_2.aj" options="-1.5 -emacssym"/> - <run class="pr112458_2"/> + <compile files="pr122458_2.aj" options="-1.5 -emacssym"/> + <run class="pr122458_2"/> </ajc-test> </suite>
\ No newline at end of file |