Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(705)

Unified Diff: tools/testing/dart/test_suite.dart

Issue 2979373002: Fix merge bug. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 828ce94bfb61dabf5baa0a46caf2d7bd2acf9d42..db00fd683db0e906ad9b347fb248ad8f660c3ca2 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -1046,11 +1046,10 @@ class StandardTestSuite extends TestSuite {
break;
case Compiler.dartdevc:
- var toPath = new Path('$compilationTempDir/$nameNoExt.js')
- .toNativePath();
- commands.add(configuration.compilerConfiguration.createCommand(
- dartWrapperFilename, toPath,
- optionsFromFile["sharedOptions"] as List<String>));
+ var toPath =
+ new Path('$compilationTempDir/$nameNoExt.js').toNativePath();
+ commands.add(configuration.compilerConfiguration.createCommand(fileName,
+ toPath, optionsFromFile["sharedOptions"] as List<String>));
break;
default:
@@ -1071,7 +1070,8 @@ class StandardTestSuite extends TestSuite {
case Compiler.dartdevc:
commands.add(configuration.compilerConfiguration.createCommand(
- fromPath.toNativePath(), toPath,
+ fromPath.toNativePath(),
+ toPath,
optionsFromFile["sharedOptions"] as List<String>));
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698