From f80ae0089b2a8f57653348b76ef1b7f89aebf2ef Mon Sep 17 00:00:00 2001 From: aclement Date: Tue, 10 Oct 2006 10:51:47 +0000 Subject: [PATCH] improved - hopefully get more info as to why currently failing on the build machine --- tests/java5/pertypewithin/ajdk/AJDKExamples.aj | 3 +++ tests/src/org/aspectj/systemtest/ajc150/ajc150.xml | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) 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 @@ - + + + + + + -- 2.39.5