summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authoraclement <aclement>2005-12-15 10:36:22 +0000
committeraclement <aclement>2005-12-15 10:36:22 +0000
commit332eef9ebd79970f5ac2fe671c4e0efdce85974a (patch)
treec731562af46840ff911af84b3d19cfdaf5f18cde /tests
parent2c59ee16ca8454b20f538e7ea8dde4e7b829fc7c (diff)
downloadaspectj-332eef9ebd79970f5ac2fe671c4e0efdce85974a.tar.gz
aspectj-332eef9ebd79970f5ac2fe671c4e0efdce85974a.zip
test updates and the fix for cases 3&4 in 120916: Jrockit test failures with RC1
Diffstat (limited to 'tests')
-rw-r--r--tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java b/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java
index 34ef3cc42..aad28e2a5 100644
--- a/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java
+++ b/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java
@@ -538,6 +538,7 @@ public class GenericsTests extends XMLBasedAjcTestCase {
public void testPR96220_GenericDecp() {
runTest("generic decp - simple");
+ checkOneSignatureAttribute(ajc,"Basic");
verifyClassSignature(ajc,"Basic","Ljava/lang/Object;LJ<Ljava/lang/Double;>;LI<Ljava/lang/Double;>;");
}
@@ -582,6 +583,7 @@ public class GenericsTests extends XMLBasedAjcTestCase {
public void testGenericDecpParameterized() {
runTest("generic decp - with parameterized on the target");
+ checkOneSignatureAttribute(ajc,"Basic6");
verifyClassSignature(ajc,"Basic6","<J:Ljava/lang/Object;>Ljava/lang/Object;LI<TJ;>;LK<Ljava/lang/Integer;>;");
}
@@ -953,6 +955,22 @@ public class GenericsTests extends XMLBasedAjcTestCase {
return sigAttr;
}
+ public static void checkOneSignatureAttribute(Ajc ajc,String classname) {
+ JavaClass clazz = getClass(ajc,classname);
+ Signature sigAttr = null;
+ Attribute[] attrs = clazz.getAttributes();
+ int signatureCount = 0;
+ StringBuffer sb = new StringBuffer();
+ for (int i = 0; i < attrs.length; i++) {
+ Attribute attribute = attrs[i];
+ if (attribute.getName().equals("Signature")) {
+ signatureCount++;
+ sb.append("\n"+((Signature)attribute).getSignature());
+ }
+ }
+ if (signatureCount>1) fail("Should be only one signature attribute but found "+signatureCount+sb.toString());
+ }
+
// Check the signature attribute on a class is correct
public static void verifyClassSignature(Ajc ajc,String classname,String sig) {
Signature sigAttr = getClassSignature(ajc,classname);