summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ajde/testdata/DuplicateManifestTest/build.ajsymbin2104 -> 0 bytes
-rw-r--r--ajde/testdata/DuplicateManifestTest/outjar.jarbin1119 -> 0 bytes
-rw-r--r--ajde/testdata/WeaveInfoMessagesTest/Empty.ajsymbin5973 -> 0 bytes
-rw-r--r--ajde/testsrc/org/aspectj/ajde/DuplicateManifestTest.java3
-rw-r--r--ajde/testsrc/org/aspectj/ajde/ShowWeaveMessagesTestCase.java2
5 files changed, 5 insertions, 0 deletions
diff --git a/ajde/testdata/DuplicateManifestTest/build.ajsym b/ajde/testdata/DuplicateManifestTest/build.ajsym
deleted file mode 100644
index 391411cb7..000000000
--- a/ajde/testdata/DuplicateManifestTest/build.ajsym
+++ /dev/null
Binary files differ
diff --git a/ajde/testdata/DuplicateManifestTest/outjar.jar b/ajde/testdata/DuplicateManifestTest/outjar.jar
deleted file mode 100644
index 802c8421a..000000000
--- a/ajde/testdata/DuplicateManifestTest/outjar.jar
+++ /dev/null
Binary files differ
diff --git a/ajde/testdata/WeaveInfoMessagesTest/Empty.ajsym b/ajde/testdata/WeaveInfoMessagesTest/Empty.ajsym
deleted file mode 100644
index cb065e78e..000000000
--- a/ajde/testdata/WeaveInfoMessagesTest/Empty.ajsym
+++ /dev/null
Binary files differ
diff --git a/ajde/testsrc/org/aspectj/ajde/DuplicateManifestTest.java b/ajde/testsrc/org/aspectj/ajde/DuplicateManifestTest.java
index 38c82bb42..4329d80d2 100644
--- a/ajde/testsrc/org/aspectj/ajde/DuplicateManifestTest.java
+++ b/ajde/testsrc/org/aspectj/ajde/DuplicateManifestTest.java
@@ -48,6 +48,9 @@ public class DuplicateManifestTest extends AjdeTestCase {
"Build warnings",
ideManager.getCompilationSourceLineTasks().isEmpty());
compareManifests(openFile(injarName),openFile(outjarName));
+ outjar.delete(); // Tidy up !
+ File rogueSymFile = new File(currTestDataPath + File.separatorChar + "build.ajsym");
+ if (rogueSymFile.exists()) rogueSymFile.delete();
}
private void compareManifests (File inFile, File outFile) {
diff --git a/ajde/testsrc/org/aspectj/ajde/ShowWeaveMessagesTestCase.java b/ajde/testsrc/org/aspectj/ajde/ShowWeaveMessagesTestCase.java
index 04223ebf8..306f89749 100644
--- a/ajde/testsrc/org/aspectj/ajde/ShowWeaveMessagesTestCase.java
+++ b/ajde/testsrc/org/aspectj/ajde/ShowWeaveMessagesTestCase.java
@@ -90,6 +90,8 @@ public class ShowWeaveMessagesTestCase extends AjdeTestCase {
protected void tearDown() throws Exception {
super.tearDown();
FileUtil.deleteContents(openFile(binDir));
+ File rogueSymFile = new File(currTestDataPath + File.separatorChar + "Empty.ajsym");
+ if (rogueSymFile.exists()) rogueSymFile.delete();
}