diff options
author | aclement <aclement> | 2005-11-01 21:55:21 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-11-01 21:55:21 +0000 |
commit | bb9d2de08e63266a93ac1167f87b07813561d559 (patch) | |
tree | 8fb9e6d17780dc6327443874ad06fbcad4da5ae7 /org.aspectj.ajdt.core/testsrc | |
parent | b83d91aafe4de6362cd4f9bc30e92e80d392bc20 (diff) | |
download | aspectj-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.java | 3 |
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"); } + } |