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