diff options
Diffstat (limited to 'tests/bugs153/pr158957')
-rw-r--r-- | tests/bugs153/pr158957/HelloWorld.java | 11 | ||||
-rw-r--r-- | tests/bugs153/pr158957/Missing.java | 3 | ||||
-rw-r--r-- | tests/bugs153/pr158957/PointcutLibrary.aj | 9 | ||||
-rw-r--r-- | tests/bugs153/pr158957/Tracing.aj | 6 | ||||
-rw-r--r-- | tests/bugs153/pr158957/ant.xml | 27 | ||||
-rw-r--r-- | tests/bugs153/pr158957/aop.xml | 9 |
6 files changed, 65 insertions, 0 deletions
diff --git a/tests/bugs153/pr158957/HelloWorld.java b/tests/bugs153/pr158957/HelloWorld.java new file mode 100644 index 000000000..8f62298fa --- /dev/null +++ b/tests/bugs153/pr158957/HelloWorld.java @@ -0,0 +1,11 @@ +public class HelloWorld { + + public void println () { + System.out.println("Hello World!"); + } + + public static void main (String[] args) throws Exception { + new HelloWorld().println(); + } + +}
\ No newline at end of file diff --git a/tests/bugs153/pr158957/Missing.java b/tests/bugs153/pr158957/Missing.java new file mode 100644 index 000000000..a61ca7bfd --- /dev/null +++ b/tests/bugs153/pr158957/Missing.java @@ -0,0 +1,3 @@ +public interface Missing { + public void doIt (); +}
\ No newline at end of file diff --git a/tests/bugs153/pr158957/PointcutLibrary.aj b/tests/bugs153/pr158957/PointcutLibrary.aj new file mode 100644 index 000000000..ffda35e80 --- /dev/null +++ b/tests/bugs153/pr158957/PointcutLibrary.aj @@ -0,0 +1,9 @@ +public aspect PointcutLibrary { + + public static pointcut doIt () : + execution(public void doIt()) && this(Missing); + + public static pointcut println () : + execution(public void println(..)); + +}
\ No newline at end of file diff --git a/tests/bugs153/pr158957/Tracing.aj b/tests/bugs153/pr158957/Tracing.aj new file mode 100644 index 000000000..5a974ad2e --- /dev/null +++ b/tests/bugs153/pr158957/Tracing.aj @@ -0,0 +1,6 @@ +public aspect Tracing { + + before () : PointcutLibrary.println() { + System.out.println("? " + thisJoinPointStaticPart.getSignature().getName()); + } +}
\ No newline at end of file diff --git a/tests/bugs153/pr158957/ant.xml b/tests/bugs153/pr158957/ant.xml new file mode 100644 index 000000000..c2de686f1 --- /dev/null +++ b/tests/bugs153/pr158957/ant.xml @@ -0,0 +1,27 @@ +<!-- ajc-ant script, not to be used from Ant commant line - see AntSpec --> +<project name="ltw"> + + <!-- using this we can debug the forked VM --> + <property + name="jdwp" + value="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/> + <property name="aj.bootpath" refid="aj.path"/> + + <target name="NPE with LTW, pointcut library and missing aspect dependency"> + <java fork="yes" classname="HelloWorld" failonerror="yes"> + <classpath refid="aj.path"/> + <classpath> + <!--<pathelement path="${aj.sandbox}/hello.jar:${aj.sandbox}/tracing.jar:${aj.sandbox}/missing.jar"/>--> + <pathelement path="${aj.sandbox}/hello.jar:${aj.sandbox}/tracing.jar"/> + </classpath> + <jvmarg value="-Daj.weaving.verbose=true"/> + <jvmarg value="-Dorg.aspectj.weaver.showWeaveInfo=true"/> + <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/> + <jvmarg value="-Dorg.aspectj.tracing.enabled=true"/> + <jvmarg value="-Dorg.aspectj.tracing.factory=default"/> + <jvmarg value="-Dorg.aspectj.tracing.messages=true"/> +<!-- <jvmarg line="${jdwp}"/>--> + </java> + </target> + +</project> diff --git a/tests/bugs153/pr158957/aop.xml b/tests/bugs153/pr158957/aop.xml new file mode 100644 index 000000000..fec692fda --- /dev/null +++ b/tests/bugs153/pr158957/aop.xml @@ -0,0 +1,9 @@ +<aspectj> + <aspects> + <aspect name="PointcutLibrary"/> + <aspect name="Tracing"/> + </aspects> + + <weaver options="-1.5"/> +</aspectj> + |