summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorwisberg <wisberg>2004-01-15 18:30:50 +0000
committerwisberg <wisberg>2004-01-15 18:30:50 +0000
commit84054bafe51c1c667d427b28cc99a64fbd9a66a6 (patch)
tree091060dc6f5806d719b577cc87ca10143af02cee /testing
parent6d2abc17be48d8242e0945709bc54dcae52d6fb8 (diff)
downloadaspectj-84054bafe51c1c667d427b28cc99a64fbd9a66a6.tar.gz
aspectj-84054bafe51c1c667d427b28cc99a64fbd9a66a6.zip
bug: was not permitting target 1.3 or 1.4
rfe: permit -1.5 (compliance) and source/target 1.5
Diffstat (limited to 'testing')
-rw-r--r--testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java b/testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java
index 1616e7b6f..e18aa09e6 100644
--- a/testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java
+++ b/testing/src/org/aspectj/testing/harness/bridge/CompilerRun.java
@@ -1551,7 +1551,7 @@ public class CompilerRun implements IAjcRun {
"source",
Option.FORCE_PREFIXES,
false,
- new String[][] { new String[] { "1.3", "1.4" }
+ new String[][] { new String[] { "1.3", "1.4", "1.5" }
});
// ajc 1.0 options
@@ -1626,6 +1626,11 @@ public class CompilerRun implements IAjcRun {
"compliance",
Option.FORCE_PREFIXES,
false),
+ factory.create(
+ "1.5",
+ "compliance",
+ Option.FORCE_PREFIXES,
+ false),
factory
.create(
"target",
@@ -1634,7 +1639,10 @@ public class CompilerRun implements IAjcRun {
false,
new String[][] { new String[] {
"1.1",
- "1.2" }}),
+ "1.2",
+ "1.3",
+ "1.4",
+ "1.5" }}),
factory.create("XnoInline"),
factory.create("XnoWeave"),
factory.create("XserializableAspects")