aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core/testsrc
diff options
context:
space:
mode:
authoraclement <aclement>2005-11-01 21:55:21 +0000
committeraclement <aclement>2005-11-01 21:55:21 +0000
commitbb9d2de08e63266a93ac1167f87b07813561d559 (patch)
tree8fb9e6d17780dc6327443874ad06fbcad4da5ae7 /org.aspectj.ajdt.core/testsrc
parentb83d91aafe4de6362cd4f9bc30e92e80d392bc20 (diff)
downloadaspectj-bb9d2de08e63266a93ac1167f87b07813561d559.tar.gz
aspectj-bb9d2de08e63266a93ac1167f87b07813561d559.zip
pr93253: lazytjp the default
Diffstat (limited to 'org.aspectj.ajdt.core/testsrc')
-rw-r--r--org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/PerformanceTestCase.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/PerformanceTestCase.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/PerformanceTestCase.java
index bbbe9c58b..1565332d2 100644
--- a/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/PerformanceTestCase.java
+++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/ajdt/internal/compiler/batch/PerformanceTestCase.java
@@ -40,7 +40,8 @@ public class PerformanceTestCase extends CommandTestCase {
// joinpoint method-execution(int LazyTjp.doit3(int)) because around advice is used [Xlint:canNotImplementLazyTjp]'
// into an error so that we can use checkCompiles() ability to check errors occur.
// Pass -proceedOnError to ensure even though we get that message, we still get the class file on disk
- checkCompile("src1/LazyTjp.aj", new String[] {"-XlazyTjp","-Xlint:error","-proceedOnError"}, new int[] {96});
+ checkCompile("src1/LazyTjp.aj", new String[] {"-Xlint:error","-proceedOnError"}, new int[] {96});
TestUtil.runMain("out", "LazyTjp");
}
+
}