diff options
author | acolyer <acolyer> | 2005-11-03 17:11:03 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-11-03 17:11:03 +0000 |
commit | ac15d777ac6d2604317976926007e8bd70c64656 (patch) | |
tree | 4768788e8623b23d9a3c7b6abd2e026acb1fff1d /testing | |
parent | 3d6a9bfbec123c41596a226598de8e07b83c1fc0 (diff) | |
download | aspectj-ac15d777ac6d2604317976926007e8bd70c64656.tar.gz aspectj-ac15d777ac6d2604317976926007e8bd70c64656.zip |
make sure the harness translates path separators for those of us working on superior platforms ;)
Diffstat (limited to 'testing')
-rw-r--r-- | testing/newsrc/org/aspectj/testing/CompileSpec.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/newsrc/org/aspectj/testing/CompileSpec.java b/testing/newsrc/org/aspectj/testing/CompileSpec.java index 4cc0f01de..1b50387b0 100644 --- a/testing/newsrc/org/aspectj/testing/CompileSpec.java +++ b/testing/newsrc/org/aspectj/testing/CompileSpec.java @@ -134,6 +134,7 @@ public class CompileSpec implements ITestStep { */ public void setInpath(String inpath) { this.inpath = inpath.replace(',',File.pathSeparatorChar); + this.inpath = inpath.replace(';',File.pathSeparatorChar); } /** * @return Returns the options. |