]> source.dussan.org Git - aspectj.git/commitdiff
fix for 95516 (-outxml / -outxmlfile) - from Matthew.
authoraclement <aclement>
Mon, 7 Nov 2005 11:12:35 +0000 (11:12 +0000)
committeraclement <aclement>
Mon, 7 Nov 2005 11:12:35 +0000 (11:12 +0000)
ajde/testdata/OutxmlTest/outxml-to-file.lst [new file with mode: 0644]
ajde/testdata/OutxmlTest/outxml-to-outjar.lst [new file with mode: 0644]
ajde/testdata/OutxmlTest/outxmlfile-to-file.lst [new file with mode: 0644]
ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst [new file with mode: 0644]
ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj [new file with mode: 0644]
ajde/testdata/OutxmlTest/src/TestClass.java [new file with mode: 0644]
ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj [new file with mode: 0644]
ajde/testdata/OutxmlTest/src/TestInterface.java [new file with mode: 0644]

diff --git a/ajde/testdata/OutxmlTest/outxml-to-file.lst b/ajde/testdata/OutxmlTest/outxml-to-file.lst
new file mode 100644 (file)
index 0000000..596118f
--- /dev/null
@@ -0,0 +1,5 @@
+src/TestClass.java
+src/TestInterface.java
+src/TestAbstractAspect.aj
+src/TestConcreteAspect.aj
+-outxml
diff --git a/ajde/testdata/OutxmlTest/outxml-to-outjar.lst b/ajde/testdata/OutxmlTest/outxml-to-outjar.lst
new file mode 100644 (file)
index 0000000..596118f
--- /dev/null
@@ -0,0 +1,5 @@
+src/TestClass.java
+src/TestInterface.java
+src/TestAbstractAspect.aj
+src/TestConcreteAspect.aj
+-outxml
diff --git a/ajde/testdata/OutxmlTest/outxmlfile-to-file.lst b/ajde/testdata/OutxmlTest/outxmlfile-to-file.lst
new file mode 100644 (file)
index 0000000..e29e822
--- /dev/null
@@ -0,0 +1,6 @@
+src/TestClass.java
+src/TestInterface.java
+src/TestAbstractAspect.aj
+src/TestConcreteAspect.aj
+-outxmlfile
+custom/aop.xml
diff --git a/ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst b/ajde/testdata/OutxmlTest/outxmlfile-to-outjar.lst
new file mode 100644 (file)
index 0000000..e29e822
--- /dev/null
@@ -0,0 +1,6 @@
+src/TestClass.java
+src/TestInterface.java
+src/TestAbstractAspect.aj
+src/TestConcreteAspect.aj
+-outxmlfile
+custom/aop.xml
diff --git a/ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj b/ajde/testdata/OutxmlTest/src/TestAbstractAspect.aj
new file mode 100644 (file)
index 0000000..df75968
--- /dev/null
@@ -0,0 +1,3 @@
+public abstract aspect TestAbstractAspect {
+       
+}
diff --git a/ajde/testdata/OutxmlTest/src/TestClass.java b/ajde/testdata/OutxmlTest/src/TestClass.java
new file mode 100644 (file)
index 0000000..38bf590
--- /dev/null
@@ -0,0 +1,3 @@
+public class TestClass {
+       
+}
diff --git a/ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj b/ajde/testdata/OutxmlTest/src/TestConcreteAspect.aj
new file mode 100644 (file)
index 0000000..deb065e
--- /dev/null
@@ -0,0 +1,3 @@
+public aspect TestConcreteAspect {
+       
+}
diff --git a/ajde/testdata/OutxmlTest/src/TestInterface.java b/ajde/testdata/OutxmlTest/src/TestInterface.java
new file mode 100644 (file)
index 0000000..86d3ce9
--- /dev/null
@@ -0,0 +1,3 @@
+public interface TestInterface {
+       
+}