aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorwisberg <wisberg>2004-01-16 15:17:08 +0000
committerwisberg <wisberg>2004-01-16 15:17:08 +0000
commit3abb815bd6a7e769e59290900cd2a7e207e6dd44 (patch)
tree1d58ce88430d070a96016afcbe25301f0be05a90 /testing
parent2be86afae3780ca87a41bb7e65f3ce1afe9999df (diff)
downloadaspectj-3abb815bd6a7e769e59290900cd2a7e207e6dd44.tar.gz
aspectj-3abb815bd6a7e769e59290900cd2a7e207e6dd44.zip
checked in test updates
Diffstat (limited to 'testing')
-rw-r--r--testing/testsrc/org/aspectj/testing/harness/bridge/CompilerRunSpecTest.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/testing/testsrc/org/aspectj/testing/harness/bridge/CompilerRunSpecTest.java b/testing/testsrc/org/aspectj/testing/harness/bridge/CompilerRunSpecTest.java
index d3de61686..d418755ae 100644
--- a/testing/testsrc/org/aspectj/testing/harness/bridge/CompilerRunSpecTest.java
+++ b/testing/testsrc/org/aspectj/testing/harness/bridge/CompilerRunSpecTest.java
@@ -151,11 +151,10 @@ public class CompilerRunSpecTest extends TestCase {
final boolean FAIL = false;
checkSourceTargetVersionConversion("target", 1, PASS, null);
checkSourceTargetVersionConversion("target", 2, PASS, null);
- checkSourceTargetVersionConversion(
- "target",
- 3,
- FAIL,
- "illegal input");
+ checkSourceTargetVersionConversion("target", 3, PASS, null);
+ checkSourceTargetVersionConversion("target", 4, PASS, null);
+ checkSourceTargetVersionConversion("target", 5, PASS, null);
+ checkSourceTargetVersionConversion("target", 6, FAIL, "illegal input");
}
/** @testcase check -source converts for 1.3 and 1.4, not others */