File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
compiler/test/dotty/tools/vulpix Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
8686 val sb = new StringBuilder
8787 val maxLen = 80
8888 var lineLen = 0
89+ val delimiter = " "
8990
9091 sb.append(
9192 s """ |
@@ -96,7 +97,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
9697 sb.append(" \n\n dotc " )
9798 flags.all.foreach { arg =>
9899 if (lineLen > maxLen) {
99- sb.append(" \\\n " )
100+ sb.append(delimiter )
100101 lineLen = 4
101102 }
102103 sb.append(arg)
@@ -107,7 +108,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
107108 self match {
108109 case source : JointCompilationSource => {
109110 source.sourceFiles.map(_.getAbsolutePath).foreach { path =>
110- sb.append(" \\\n " )
111+ sb.append(delimiter )
111112 sb.append(path)
112113 sb += ' '
113114 }
@@ -118,7 +119,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
118119 val fsb = new StringBuilder (command)
119120 self.compilationGroups.foreach { files =>
120121 files.map(_.getPath).foreach { path =>
121- fsb.append(" \\\n " )
122+ fsb.append(delimiter )
122123 lineLen = 8
123124 fsb.append(path)
124125 fsb += ' '
You can’t perform that action at this time.
0 commit comments