diff options
author | mwebster <mwebster> | 2006-06-15 16:32:39 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-06-15 16:32:39 +0000 |
commit | fdbae3fda3e572ea35ac4a73373896b9b5cff8f7 (patch) | |
tree | 5433af7f17e1b96d05fe541a1bca017b12a6ac81 /tests/ltw | |
parent | 81abede5115df2b032b846c5ff8bf23050f68e34 (diff) | |
download | aspectj-fdbae3fda3e572ea35ac4a73373896b9b5cff8f7.tar.gz aspectj-fdbae3fda3e572ea35ac4a73373896b9b5cff8f7.zip |
Fix for 139936 "[ltw] WeavingAdaptor.generatedClassesExist() cannot cope with additional class weaving"
Diffstat (limited to 'tests/ltw')
-rw-r--r-- | tests/ltw/EmptyAspect.aj | 3 | ||||
-rw-r--r-- | tests/ltw/EmptyTest1.java | 8 | ||||
-rw-r--r-- | tests/ltw/EmptyTest2.java | 7 | ||||
-rw-r--r-- | tests/ltw/aop-emptytests.xml | 8 |
4 files changed, 26 insertions, 0 deletions
diff --git a/tests/ltw/EmptyAspect.aj b/tests/ltw/EmptyAspect.aj new file mode 100644 index 000000000..e24bad3e8 --- /dev/null +++ b/tests/ltw/EmptyAspect.aj @@ -0,0 +1,3 @@ +public aspect EmptyAspect { + +}
\ No newline at end of file diff --git a/tests/ltw/EmptyTest1.java b/tests/ltw/EmptyTest1.java new file mode 100644 index 000000000..42e579d78 --- /dev/null +++ b/tests/ltw/EmptyTest1.java @@ -0,0 +1,8 @@ +public class EmptyTest1 { + + public static void main (String[] args) { + System.out.println("EmptyTest1.main()"); + EmptyTest2.main(args); + } + +}
\ No newline at end of file diff --git a/tests/ltw/EmptyTest2.java b/tests/ltw/EmptyTest2.java new file mode 100644 index 000000000..6b51489d7 --- /dev/null +++ b/tests/ltw/EmptyTest2.java @@ -0,0 +1,7 @@ +public class EmptyTest2 { + + public static void main (String[] args) { + System.out.println("EmptyTest2.main()"); + } + +}
\ No newline at end of file diff --git a/tests/ltw/aop-emptytests.xml b/tests/ltw/aop-emptytests.xml new file mode 100644 index 000000000..da7bd5e2a --- /dev/null +++ b/tests/ltw/aop-emptytests.xml @@ -0,0 +1,8 @@ +<aspectj> + <aspects> + <aspect name="EmptyAspect"/> + </aspects> + <weaver options="-verbose"> + <include within="*1"/> + </weaver> +</aspectj>
\ No newline at end of file |