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

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

Issue 288703003: Revert revisions 36163 and 36162 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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 | « tests/standalone/io/skipping_dart2js_compilations_test.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/multitest.dart
===================================================================
--- tools/testing/dart/multitest.dart (revision 36164)
+++ tools/testing/dart/multitest.dart (working copy)
@@ -248,10 +248,9 @@
if (!importDir.isEmpty) {
TestUtils.mkdirRecursive(targetDir, importDir);
}
- Path srcPath = sourceDir.join(importPath);
- Path targetPath = targetDir.join(importPath);
// Copy file.
- futureCopies.add(TestUtils.copyIfDifferent(srcPath, targetPath));
+ futureCopies.add(TestUtils.copyFile(sourceDir.join(importPath),
+ targetDir.join(importPath)));
}
// Wait until all imports are copied before scheduling test cases.
« no previous file with comments | « tests/standalone/io/skipping_dart2js_compilations_test.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698