]> source.dussan.org Git - aspectj.git/commitdiff
194314: moved to 164
authoraclement <aclement>
Thu, 29 Jan 2009 04:00:39 +0000 (04:00 +0000)
committeraclement <aclement>
Thu, 29 Jan 2009 04:00:39 +0000 (04:00 +0000)
tests/src/org/aspectj/systemtest/ajc163/Ajc163Tests.java
tests/src/org/aspectj/systemtest/ajc163/ajc163.xml

index e6dd725679616a7af089aae381ba7026c073b425..d7aae9a040e95d943994c9661cb3457419093424 100644 (file)
@@ -231,59 +231,6 @@ public class Ajc163Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
                runTest("generic pointcuts - 4");
        }
 
-       // public void testBrokenLVT_pr194314_1() throws Exception {
-       // runTest("broken lvt - 1");
-       // JavaClass jc = Utils.getClassFrom(ajc.getSandboxDirectory().getAbsolutePath(), "Service");
-       // Method[] ms = jc.getMethods();
-       // Method m = null;
-       // for (int i = 0; i < ms.length; i++) {
-       // if (ms[i].getName().equals("method_aroundBody1$advice")) {
-       // m = ms[i];
-       // }
-       // }
-       // if (m.getLocalVariableTable() == null) {
-       // fail("Local variable table should not be null");
-       // }
-       // System.out.println(m.getLocalVariableTable());
-       // LocalVariable[] lvt = m.getLocalVariableTable().getLocalVariableTable();
-       // assertEquals(8, lvt.length);
-       // }
-       //
-       // public void testBrokenLVT_pr194314_2() throws Exception {
-       // runTest("broken lvt - 2");
-       // JavaClass jc = Utils.getClassFrom(ajc.getSandboxDirectory().getAbsolutePath(), "Service");
-       // Method[] ms = jc.getMethods();
-       // Method m = null;
-       // for (int i = 0; i < ms.length; i++) {
-       // if (ms[i].getName().equals("method_aroundBody1$advice")) {
-       // m = ms[i];
-       // }
-       // }
-       // if (m.getLocalVariableTable() == null) {
-       // fail("Local variable table should not be null");
-       // }
-       // System.out.println(m.getLocalVariableTable());
-       // LocalVariable[] lvt = m.getLocalVariableTable().getLocalVariableTable();
-       // assertEquals(8, lvt.length);
-       // // assertEquals(2, m.getLocalVariableTable().getLocalVariableTable().length);
-       //
-       // // Before I've started any work on this:
-       // // LocalVariable(start_pc = 0, length = 68, index = 0:ServiceInterceptorCodeStyle this)
-       // // LocalVariable(start_pc = 0, length = 68, index = 1:org.aspectj.runtime.internal.AroundClosure ajc_aroundClosure)
-       // // LocalVariable(start_pc = 0, length = 68, index = 2:org.aspectj.lang.JoinPoint thisJoinPoint)
-       // // LocalVariable(start_pc = 9, length = 59, index = 3:Object[] args)
-       // // LocalVariable(start_pc = 21, length = 47, index = 4:long id)
-       //
-       // // Method signature:
-       // // private static final void method_aroundBody1$advice(Service, long, org.aspectj.lang.JoinPoint,
-       // // ServiceInterceptorCodeStyle, org.aspectj.runtime.internal.AroundClosure, org.aspectj.lang.JoinPoint);
-       // //
-       // // Service, JoinPoint, ServiceInterceptorCodeStyle, AroundClosure, JoinPoint
-       //
-       // // args should be in slot 7 and the long in position 8
-       //
-       // }
-
        public void testDontAddMethodBodiesToInterface_pr163005() {
                runTest("do not add method bodies to an interface");
        }
index 795613c38de0c79e94a46dadcfc90db8094fdc27..e2dec5df6dba5a3e561d268e20c951538cc638d2 100644 (file)
     </ajc-test>
     
 
-    <ajc-test dir="bugs163/pr194314" title="broken lvt - 1">
-      <compile files="Service.java IService.java Main.java ServiceInterceptor.java" options="-1.5"/>
-    </ajc-test>
-    
-    <ajc-test dir="bugs163/pr194314" title="broken lvt - 2">
-      <compile files="Service.java IService.java Main.java ServiceInterceptorCodeStyle.java" options="-1.5"/>
-    </ajc-test>
-
     <ajc-test dir="bugs163/pr163005" title="do not add method bodies to an interface">
       <compile files="Code.java" options="-1.4">
         <message kind="warning" text="The joinpoint 'method-call(java.lang.Class java.lang.Class.forName(java.lang.String))' cannot be advised"/>