diff options
author | mwebster <mwebster> | 2006-08-23 11:52:22 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-08-23 11:52:22 +0000 |
commit | 8549d861b124c20eba114b658e886bfbaf5d231c (patch) | |
tree | 23e297d985530526f65041b21bf113171665139a /tests/ltw | |
parent | 30c0ada8a7430c4cfeab89f94291f328099e9da4 (diff) | |
download | aspectj-8549d861b124c20eba114b658e886bfbaf5d231c.tar.gz aspectj-8549d861b124c20eba114b658e886bfbaf5d231c.zip |
Bug 150271 "Allow multiple levels of LTW information" (make weaving/not weaving messages debug and add -debug to options for aop.xml)
Diffstat (limited to 'tests/ltw')
-rw-r--r-- | tests/ltw/aop-defineaspect.xml | 2 | ||||
-rw-r--r-- | tests/ltw/aop-emptytests.xml | 2 | ||||
-rw-r--r-- | tests/ltw/aop-nomatch.xml | 2 | ||||
-rw-r--r-- | tests/ltw/aop-nomatchxlint.xml | 2 | ||||
-rw-r--r-- | tests/ltw/aop-nomatchxlintfile.xml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/ltw/aop-defineaspect.xml b/tests/ltw/aop-defineaspect.xml index f40bff2c4..2fe76caa5 100644 --- a/tests/ltw/aop-defineaspect.xml +++ b/tests/ltw/aop-defineaspect.xml @@ -4,6 +4,6 @@ <pointcut name="scope" expression="within(Main)"/> </concrete-aspect> </aspects> - <weaver options="-verbose"/> + <weaver options="-verbose -debug"/> </aspectj> diff --git a/tests/ltw/aop-emptytests.xml b/tests/ltw/aop-emptytests.xml index da7bd5e2a..f686bb484 100644 --- a/tests/ltw/aop-emptytests.xml +++ b/tests/ltw/aop-emptytests.xml @@ -2,7 +2,7 @@ <aspects> <aspect name="EmptyAspect"/> </aspects> - <weaver options="-verbose"> + <weaver options="-verbose -debug"> <include within="*1"/> </weaver> </aspectj>
\ No newline at end of file diff --git a/tests/ltw/aop-nomatch.xml b/tests/ltw/aop-nomatch.xml index 620a4c77e..ac82b6014 100644 --- a/tests/ltw/aop-nomatch.xml +++ b/tests/ltw/aop-nomatch.xml @@ -3,5 +3,5 @@ <aspect name="Aspect3"/> </aspects> - <weaver options="-verbose -showWeaveInfo"/> + <weaver options="-verbose -debug -showWeaveInfo"/> </aspectj> diff --git a/tests/ltw/aop-nomatchxlint.xml b/tests/ltw/aop-nomatchxlint.xml index 4271e394d..46c38ca75 100644 --- a/tests/ltw/aop-nomatchxlint.xml +++ b/tests/ltw/aop-nomatchxlint.xml @@ -3,5 +3,5 @@ <aspect name="Aspect3"/> </aspects> - <weaver options="-verbose -showWeaveInfo -Xlint:warning"/> + <weaver options="-verbose -debug -showWeaveInfo -Xlint:warning"/> </aspectj> diff --git a/tests/ltw/aop-nomatchxlintfile.xml b/tests/ltw/aop-nomatchxlintfile.xml index 35ce126e3..1bfabf169 100644 --- a/tests/ltw/aop-nomatchxlintfile.xml +++ b/tests/ltw/aop-nomatchxlintfile.xml @@ -3,5 +3,5 @@ <aspect name="Aspect3"/> </aspects> - <weaver options="-verbose -showWeaveInfo -Xlintfile:Xlint-nomatch.properties"/> + <weaver options="-verbose -debug -showWeaveInfo -Xlintfile:Xlint-nomatch.properties"/> </aspectj> |