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 =>
86
86
val sb = new StringBuilder
87
87
val maxLen = 80
88
88
var lineLen = 0
89
+ val delimiter = " "
89
90
90
91
sb.append(
91
92
s """ |
@@ -96,7 +97,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
96
97
sb.append(" \n\n dotc " )
97
98
flags.all.foreach { arg =>
98
99
if (lineLen > maxLen) {
99
- sb.append(" \\\n " )
100
+ sb.append(delimiter )
100
101
lineLen = 4
101
102
}
102
103
sb.append(arg)
@@ -107,7 +108,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
107
108
self match {
108
109
case source : JointCompilationSource => {
109
110
source.sourceFiles.map(_.getAbsolutePath).foreach { path =>
110
- sb.append(" \\\n " )
111
+ sb.append(delimiter )
111
112
sb.append(path)
112
113
sb += ' '
113
114
}
@@ -118,7 +119,7 @@ trait ParallelTesting extends RunnerOrchestration { self =>
118
119
val fsb = new StringBuilder (command)
119
120
self.compilationGroups.foreach { files =>
120
121
files.map(_.getPath).foreach { path =>
121
- fsb.append(" \\\n " )
122
+ fsb.append(delimiter )
122
123
lineLen = 8
123
124
fsb.append(path)
124
125
fsb += ' '
You can’t perform that action at this time.
0 commit comments