diff options
author | jhugunin <jhugunin> | 2003-08-28 21:44:55 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-08-28 21:44:55 +0000 |
commit | 5a07dcee3a3f520e4b5cadc67000673e2d0ca0b7 (patch) | |
tree | 771065369cab0955da5791a8648ede9c52216da7 /tests/ajcTests.xml | |
parent | d8b86743663c19fd545d8dea89290dccda7a5ed1 (diff) | |
download | aspectj-5a07dcee3a3f520e4b5cadc67000673e2d0ca0b7.tar.gz aspectj-5a07dcee3a3f520e4b5cadc67000673e2d0ca0b7.zip |
fix and test for Bugzilla Bug 41359
percflow aspects compiled from jars share one instance for all entry points
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r-- | tests/ajcTests.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 1412ad04d..db51bfc2c 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -6705,4 +6705,19 @@ <message kind="error" line="3"/> </compile> </ajc-test> + + <ajc-test dir="bugs/perCflowAndJar" + pr="41359" + title="percflow aspects compiled from jars share one instance for all entry points"> + <compile files="PerCFlowCompileFromJar.java,PerCFlowCompileFromJarTest.java"/> + <run class="PerCFlowCompileFromJarTest"/> + </ajc-test> + + <ajc-test dir="bugs/perCflowAndJar" + pr="41359" + title="(using aspectpath) percflow aspects compiled from jars share one instance for all entry points"> + <compile files="PerCFlowCompileFromJarTest.java" + aspectpath="lib.jar"/> + <run class="PerCFlowCompileFromJarTest"/> + </ajc-test> </suite> |