From: aclement Date: Tue, 10 Oct 2006 10:51:47 +0000 (+0000) Subject: improved - hopefully get more info as to why currently failing on the build machine X-Git-Tag: BEFORE_133532~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f80ae0089b2a8f57653348b76ef1b7f89aebf2ef;p=aspectj.git improved - hopefully get more info as to why currently failing on the build machine --- diff --git a/tests/java5/pertypewithin/ajdk/AJDKExamples.aj b/tests/java5/pertypewithin/ajdk/AJDKExamples.aj index a03c72643..e324c6f43 100644 --- a/tests/java5/pertypewithin/ajdk/AJDKExamples.aj +++ b/tests/java5/pertypewithin/ajdk/AJDKExamples.aj @@ -2,6 +2,9 @@ package org.xyz.foo; import java.util.*; public aspect AJDKExamples pertypewithin(org.xyz..* && !AJDKExamples) { + public AJDKExamples() { + System.out.println("Aspect instance constructed"); + } // use WeakHashMap for auto-garbage collection of keys private Map instances = new WeakHashMap(); diff --git a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml index 922fb16ee..43e304401 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml +++ b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml @@ -2881,9 +2881,14 @@ - + + + + + +