diff options
author | jhugunin <jhugunin> | 2003-05-01 00:21:12 +0000 |
---|---|---|
committer | jhugunin <jhugunin> | 2003-05-01 00:21:12 +0000 |
commit | 50a7291088bb04a856e5cf6ff31606b86213b052 (patch) | |
tree | 8976ab069a905be53cfa913bc35ec8c23004cfa6 /tests/ajcTests.xml | |
parent | a9823f122ff3c9322c136292c45c1f9ea7cddc0a (diff) | |
download | aspectj-50a7291088bb04a856e5cf6ff31606b86213b052.tar.gz aspectj-50a7291088bb04a856e5cf6ff31606b86213b052.zip |
Added easy to understand test for issue of Class.forName differences
between IBM and SUN's JDKs
Moved a nit-picking part of SourceLocationWithExpr to its own test that
is listed as a known limitation.
Diffstat (limited to 'tests/ajcTests.xml')
-rw-r--r-- | tests/ajcTests.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ajcTests.xml b/tests/ajcTests.xml index 13bf490e7..8553355a5 100644 --- a/tests/ajcTests.xml +++ b/tests/ajcTests.xml @@ -5142,6 +5142,14 @@ <compile files="SourceLocationWithinExpr.java"/> <run class="SourceLocationWithinExpr"/> </ajc-test> + + + <ajc-test dir="new" pr="885" keywords="knownLimitation" + comment="this behaves differently in 1.3 from 1.4 for unknown reasons, merge with above when resolved" + title="source locations within expressions (hard case of constructor start)"> + <compile files="SourceLocationWithinExprHard.java"/> + <run class="SourceLocationWithinExprHard"/> + </ajc-test> <ajc-test dir="new" pr="888" title="crashes given method in declared method"> @@ -5898,4 +5906,11 @@ <compile files="Trg.java,Asp.java"/> <run class="Trg"/> </ajc-test> + + <ajc-test dir="new" + comment="this is a pureJava test, but we always want to run it" + title="arrays via Class.forName()"> + <compile files="ClassForName.java"/> + <run class="ClassForName"/> + </ajc-test> </suite> |