diff options
author | jhugunin <jhugunin> | 2004-01-26 20:57:33 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2004-01-26 20:57:33 +0000 |
commit | b3074df1ee01ec677cf3e9cf0c9cb35e2d60dc38 (patch) | |
tree | 1dacfabd6363c3c49dd053fe53bc99af4fc6dbd1 /tests/ajcTestsFailing.xml | |
parent | 9e3a03d72645690f365b68404a3e8d0fc2aec76f (diff) | |
download | aspectj-b3074df1ee01ec677cf3e9cf0c9cb35e2d60dc38.tar.gz aspectj-b3074df1ee01ec677cf3e9cf0c9cb35e2d60dc38.zip |
Bugzilla Bug 50641
Better binary compatibility for advice method names
Diffstat (limited to 'tests/ajcTestsFailing.xml')
-rw-r--r-- | tests/ajcTestsFailing.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ajcTestsFailing.xml b/tests/ajcTestsFailing.xml index 77825d91a..dca686139 100644 --- a/tests/ajcTestsFailing.xml +++ b/tests/ajcTestsFailing.xml @@ -144,4 +144,20 @@ <run class="InterfaceMethodDeclarationNonPublic"/> </ajc-test> + <ajc-test dir="bugs/binaryCompat" pr="50641" + title="binary compatibility of advice method names - expect no error"> + <compile files="Main.java,TraceV1.aj"/> + <run class="Main"/> + <compile files="TraceV2.aj"/> + <run class="Main"/> + </ajc-test> + + <ajc-test dir="bugs/binaryCompat" pr="50641" + title="binary compatibility of advice method names - expect error"> + <compile files="Main.java,TraceV1.aj"/> + <run class="Main"/> + <compile files="TraceRE.aj"/> + <run class="Main"/> + </ajc-test> + </suite> |