diff options
author | avasseur <avasseur> | 2005-05-02 08:17:36 +0000 |
---|---|---|
committer | avasseur <avasseur> | 2005-05-02 08:17:36 +0000 |
commit | cdddd38d261f0ae75bf95f0859e7a440be1bb3d5 (patch) | |
tree | fa61448ab8b0d848cd65930fc5e9a44a71433ea8 /tests/src/org/aspectj/systemtest/incremental | |
parent | 0b7744f560fb4ff70b70884a4932c8ebeb603fd2 (diff) | |
download | aspectj-cdddd38d261f0ae75bf95f0859e7a440be1bb3d5.tar.gz aspectj-cdddd38d261f0ae75bf95f0859e7a440be1bb3d5.zip |
PTW perClause for @AJ + perClause test
Diffstat (limited to 'tests/src/org/aspectj/systemtest/incremental')
-rw-r--r-- | tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java index a7005d6b4..f90ed90b3 100644 --- a/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java +++ b/tests/src/org/aspectj/systemtest/incremental/tools/AjdeInteractionTestbed.java @@ -223,8 +223,14 @@ public class AjdeInteractionTestbed extends TestCase { // AMC - I did this rather than use the JDK default as I hate having to go look // in c:\documents and settings\......... for the results of a failed test. if (os.startsWith("Windows")) { - tempDir = new File("C:\\temp"); - if (!tempDir.exists()) {tempDir.mkdir();} + //Alex: try D first since NTFS on mine while FAT leads to failure.. + tempDir = new File("D:\\temp"); + if (!tempDir.exists()) { + tempDir = new File("C:\\temp"); + if (!tempDir.exists()) { + tempDir.mkdir(); + } + } } else { tempDir = new File("/tmp"); } |