diff options
author | acolyer <acolyer> | 2005-08-16 09:27:21 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-16 09:27:21 +0000 |
commit | b80aef96e0752e44f09380a3e9346e62900838a5 (patch) | |
tree | 0c7dd48d23bf7427de8aea5cde90505cd249a1b3 /tests/src | |
parent | fcddd27d45f1e11a389764003a36c73978c9520c (diff) | |
download | aspectj-b80aef96e0752e44f09380a3e9346e62900838a5.tar.gz aspectj-b80aef96e0752e44f09380a3e9346e62900838a5.zip |
tests for pr106130 and pr107059
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java index fdab101db..702bf68ad 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java @@ -200,8 +200,16 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("(@Foo *)+ type pattern parse error"); } + public void test_pr106130_tooManyLocals() { + runTest("test weaving with > 256 locals"); + } + public void testMissingNamePattern_pr106461() { runTest("missing name pattern"); } + public void testMissingNamePattern_pr107059() { + runTest("parser crashes on call(void (@a *)(..)"); + } + // helper methods..... public SyntheticRepository createRepos(File cpentry) { |