Browse Source

279983: generic method overriding

tags/PRE_J5
aclement 15 years ago
parent
commit
3c9a892af9

+ 0
- 6
tests/src/org/aspectj/systemtest/ajc165/ajc165.xml View File

@@ -1,12 +1,6 @@
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]>

<suite>

<ajc-test dir="bugs165/pr279983" title="generics bridge">
<compile files="X.java" options="-1.5"/>
<run class="X"/>
</ajc-test>
<ajc-test dir="bugs165/pr277959" title="verifyerror">
<compile files="AOPTest.java CodeAspect.java" options="-1.5"/>

+ 3
- 3
tests/src/org/aspectj/systemtest/ajc166/Ajc166Tests.java View File

@@ -19,9 +19,9 @@ import org.aspectj.testing.XMLBasedAjcTestCase;
public class Ajc166Tests extends org.aspectj.testing.XMLBasedAjcTestCase {

// fix is too disruptive for 1.6.5
// public void testGenericsBridge_pr279983() {
// runTest("generics bridge");
// }
public void testGenericsBridge_pr279983() {
runTest("generics bridge");
}

public void testGenericsDecp_pr282299() {
runTest("generics and decp");

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

@@ -2,6 +2,11 @@

<suite>
<ajc-test dir="bugs165/pr279983" title="generics bridge">
<compile files="X.java" options="-1.5"/>
<run class="X"/>
</ajc-test>

<ajc-test dir="bugs166/pr282299" title="generics and decp">
<compile files="Code.java" options="-1.5"/>
</ajc-test>

Loading…
Cancel
Save