Skip to content

Commit 061dc96

Browse files
Merge pull request #7937 from dotty-staging/fix-#2490
Fix #2490: Put single quotes around each filename
2 parents f192a47 + 914a9b1 commit 061dc96

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

compiler/test/dotty/tools/vulpix/ParallelTesting.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ trait ParallelTesting extends RunnerOrchestration { self =>
109109
case source: JointCompilationSource => {
110110
source.sourceFiles.map(_.getPath).foreach { path =>
111111
sb.append(delimiter)
112+
sb += '''
112113
sb.append(path)
114+
sb += '''
113115
sb += ' '
114116
}
115117
sb.toString + "\n\n"
@@ -121,7 +123,9 @@ trait ParallelTesting extends RunnerOrchestration { self =>
121123
files.map(_.getPath).foreach { path =>
122124
fsb.append(delimiter)
123125
lineLen = 8
126+
fsb += '''
124127
fsb.append(path)
128+
fsb += '''
125129
fsb += ' '
126130
}
127131
fsb.append("\n\n")

0 commit comments

Comments
 (0)