From: wisberg Date: Thu, 15 Jan 2004 18:30:50 +0000 (+0000) Subject: bug: was not permitting target 1.3 or 1.4 X-Git-Tag: v_preCompileLoopAlteration~92 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=84054bafe51c1c667d427b28cc99a64fbd9a66a6;p=aspectj.git bug: was not permitting target 1.3 or 1.4 rfe: permit -1.5 (compliance) and source/target 1.5 --- 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")