]> source.dussan.org Git - aspectj.git/commitdiff
update to binary format as part of generics work, plus remove needless duplication...
authoracolyer <acolyer>
Thu, 9 Jun 2005 14:43:12 +0000 (14:43 +0000)
committeracolyer <acolyer>
Thu, 9 Jun 2005 14:43:12 +0000 (14:43 +0000)
tests/new/options11/aspectlib1.jar
tests/new/options11/aspectlib2.jar
tests/new/options11/injar.jar
tests/src/org/aspectj/systemtest/inpath/InPathTests.java
tests/testsrc/TestsModuleTests.java

index 680a8f76de2aab63800dcc4dab371e092dd3548f..c0a824e752eda262a9ec3a61f5173c2c58026df8 100644 (file)
Binary files a/tests/new/options11/aspectlib1.jar and b/tests/new/options11/aspectlib1.jar differ
index cab875dee074ede299681d0b97edf6de777cd720..3a1f8b2ba6fd869bdc75cdf4d857c7602802cf8e 100644 (file)
Binary files a/tests/new/options11/aspectlib2.jar and b/tests/new/options11/aspectlib2.jar differ
index 429473b8e117244be7cbfb8fc178755624dbc471..a70a43a12765440515d8221bcac300563a4af4de 100644 (file)
Binary files a/tests/new/options11/injar.jar and b/tests/new/options11/injar.jar differ
index 6bd3bf74934481d69e40b7630dca5389169bb35a..cecb3e85fe83dde65cf5e3decef7c89955914fdf 100644 (file)
@@ -36,9 +36,10 @@ public class InPathTests extends org.aspectj.testing.XMLBasedAjcTestCase {
     runTest("options -injars checking declare parents interactions");
   }
 
-  public void test004(){
-    runTest("The compiler crashes when using aspect libraries created without using -noweave");
-  }
+// test removed from suite since aspects are *always* generated reweavable
+//  public void test004(){
+//    runTest("The compiler crashes when using aspect libraries created without using -noweave");
+//  }
 
   public void test005(){
     runTest("declare warnings on main");
index 2c79a7dd4be7eaba9fbb2d3cdfaffa20d7e4eb1c..8df16f22204732af31d173d84673d6f815e2f397 100644 (file)
@@ -25,9 +25,7 @@ public class TestsModuleTests extends TestCase {
         String name = TestsModuleTests.class.getName();
         TestSuite suite = new TestSuite(name);
         // compiler tests, wrapped for JUnit
-        suite.addTest(AllTests.suite());            
         if (LangUtil.is15VMOrGreater()) {
-            suite.addTest(AllTests14.suite());            
             suite.addTest(AllTests15.suite());
         } else if (LangUtil.is14VMOrGreater()) {
             System.err.println("Skipping tests for 1.5");
@@ -36,6 +34,7 @@ public class TestsModuleTests extends TestCase {
         } else {
             System.err.println("Skipping tests for 1.4 and 1.5");
             //suite.addTest(TestUtil.skipTest("for 1.4 and 1.5"));
+               suite.addTest(AllTests.suite());            
         }
         return suite;
     }