diff options
author | acolyer <acolyer> | 2005-08-20 12:11:37 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-20 12:11:37 +0000 |
commit | b0622ad2495f6bd3744751c9e52375f4b5601114 (patch) | |
tree | 9ce5107a6bd36a774fcb7ac52f1c45d919554952 /tests | |
parent | f624c3fcc076d2ec21a011aed01e0e24cb79df6a (diff) | |
download | aspectj-b0622ad2495f6bd3744751c9e52375f4b5601114.tar.gz aspectj-b0622ad2495f6bd3744751c9e52375f4b5601114.zip |
tests for pr78314 and pr80571
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bugs150/pr80571.aj | 22 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java | 8 | ||||
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/ajc150.xml | 23 |
3 files changed, 52 insertions, 1 deletions
diff --git a/tests/bugs150/pr80571.aj b/tests/bugs150/pr80571.aj new file mode 100644 index 000000000..f7e3bc806 --- /dev/null +++ b/tests/bugs150/pr80571.aj @@ -0,0 +1,22 @@ +public class pr80571 { + + public static void main(String[] args) { + new pr80571(); + } + +} + +interface I { + public final String NAME = "I"; + public pr80571 testObj = new pr80571(); + +} + +aspect A { + Object around() : call(*.new(..)) { + System.out.println("before"); + Object ret = proceed(); + System.out.println("after"); + return ret; + } +}
\ No newline at end of file diff --git a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java index 5827bc445..e4dcf188d 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java @@ -250,6 +250,14 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("declare warning : foo(str) : ...;"); } + public void testAroundAdviceAndInterfaceInitializer() { + runTest("around advice on interface initializer"); + } + + public void testGoodErrorMessageOnUnmatchedMemberSyntax() { + runTest("good error message for unmatched member syntax"); + } + // helper methods..... public SyntheticRepository createRepos(File cpentry) { diff --git a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml index 9551abe56..362b41c9a 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml +++ b/tests/src/org/aspectj/systemtest/ajc150/ajc150.xml @@ -270,7 +270,28 @@ <ajc-test dir="bugs150" title="(@Foo *)+ type pattern parse error"> <compile files="AnnotationPlusPatternParseError.aj" options="-1.5"/> </ajc-test> - + + <ajc-test dir="bugs150" pr="80571" title="around advice on interface initializer"> + <compile files="pr80571.aj"/> + <run class="pr80571"> + <stdout> + <line text="before"/> + <line text="after"/> + </stdout> + </run> + </ajc-test> + + <ajc-test dir="bugs150" pr="78314" title="good error message for unmatched member syntax"> + <compile files="pr78314.aj" options="-1.5"> + <message kind="error" line="5" text="Syntax error, insert "body""/> + <message kind="error" line="5" text="Syntax error on tokens, valid member declaration expected instead"/> + </compile> + <compile files="pr78314.aj"> + <message kind="error" line="5" text="Syntax error, insert "body""/> + <message kind="error" line="5" text="Syntax error on tokens, valid member declaration expected instead"/> + </compile> + </ajc-test> + <ajc-test dir="../docs/dist/doc/examples/introduction" title="introduction sample" vm="1.5"> <compile files="CloneablePoint.java,ComparablePoint.java,HashablePoint.java,Point.java" options="-1.5"/> </ajc-test> |