Browse Source

235204: test

tags/V1_6_1rc1
aclement 16 years ago
parent
commit
e7a6acd6d4

+ 21
- 0
tests/bugs161/pr235204/RecursiveCatcher.java View File

@@ -0,0 +1,21 @@

package recursivepackage;

public aspect RecursiveCatcher {

pointcut recur() :
call(public void
*.recursiveCall(int));


before(): recur() {
// empty
}


public void recursiveCall(int i) { // marker is here
recursiveCall(i); // marker should be here
}

}


+ 22
- 1
tests/src/org/aspectj/systemtest/ajc161/Ajc161Tests.java View File

@@ -11,15 +11,36 @@
package org.aspectj.systemtest.ajc161;

import java.io.File;
import java.util.Iterator;
import java.util.Set;

import junit.framework.Test;

import org.aspectj.asm.AsmManager;
import org.aspectj.asm.IRelationshipMap;
import org.aspectj.testing.XMLBasedAjcTestCase;

public class Ajc161Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
// AspectJ1.6.1
public void testITDPrecedence_pr233838_1() { runTest("itd precedence - 1"); }
public void testIncorrectRelationship_pr235204() {
runTest("incorrect call relationship");
IRelationshipMap irm = AsmManager.getDefault().getRelationshipMap();
Set entries = irm.getEntries();
String gotit = "";
for (Iterator iterator = entries.iterator(); iterator.hasNext();) {
Object object = (Object) iterator.next();
gotit = (String) object;
break;
}
if (gotit.indexOf("method-call") == -1) {
String expected = "<recursivepackage{RecursiveCatcher.java}RecursiveCatcher~recursiveCall~I?method-call(void recursivepackage.RecursiveCatcher.recursiveCall(int))";
fail("Expected '" + expected + "' but got '" + gotit + "'");
}
}

public void testITDPrecedence_pr233838_1() {
runTest("itd precedence - 1"); }
public void testITDPrecedence_pr233838_2() { runTest("itd precedence - 2"); }
public void testGetFieldGenerics_pr227401() { runTest("getfield problem with generics");}
public void testGenericAbstractAspects_pr231478() { runTest("generic abstract aspects"); }

+ 5
- 0
tests/src/org/aspectj/systemtest/ajc161/ajc161.xml View File

@@ -3,6 +3,11 @@
<!-- AspectJ v1.6.1 Tests -->
<suite>


<ajc-test dir="bugs161/pr235204" title="incorrect call relationship">
<compile files="RecursiveCatcher.java" options="-1.5 -emacssym"/>
</ajc-test>
<ajc-test dir="bugs161/pr233838" title="itd precedence - 1">
<compile files="Z.java" options="-1.5"/>
<run class="Z">

Loading…
Cancel
Save