Skip to content

Commit e319a6c

Browse files
osa1Commit Queue
authored andcommitted
[ddc] Fix batch mode argument parsing on Windows
This bug was introduced with https://dart-review.googlesource.com/c/sdk/+/415280. Fixes #60346. Change-Id: I677145bcbf30b2c56eb061998be8ffd56f392dcd Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/416700 Reviewed-by: Nicholas Shahan <[email protected]> Commit-Queue: Ömer Ağacan <[email protected]>
1 parent e958560 commit e319a6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/dev_compiler/lib/ddc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class _BatchHelper {
130130

131131
Future<void> _doIteration(ParsedArguments batchArgs, String line) async {
132132
totalTests++;
133-
var args = batchArgs.merge(splitLine(line));
133+
var args = batchArgs.merge(splitLine(line, windows: Platform.isWindows));
134134

135135
String outcome;
136136
try {

0 commit comments

Comments
 (0)