Browse Source

macfix: use canonicalpath in case the /tmp dir is a softlink

tags/V1_5_4rc1
aclement 16 years ago
parent
commit
04190531ac
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      tests/src/org/aspectj/systemtest/model/ModelTestCase.java

+ 1
- 1
tests/src/org/aspectj/systemtest/model/ModelTestCase.java View File

@@ -66,7 +66,7 @@ public abstract class ModelTestCase extends XMLBasedAjcTestCase {
// report all information - model, relationships delta processing
modelFilename = ajc.getSandboxDirectory().getAbsolutePath() + File.separator + "model.txt";
AsmManager.setReporting(modelFilename,
true,true,true,false,new TestFilter(ajc.getSandboxDirectory().getAbsolutePath()));
true,true,true,false,new TestFilter(ajc.getSandboxDirectory().getCanonicalPath()));
}
static class TestFilter implements IModelFilter {

Loading…
Cancel
Save