| Index: tools/testing/dart/multitest.dart
|
| ===================================================================
|
| --- tools/testing/dart/multitest.dart (revision 35634)
|
| +++ tools/testing/dart/multitest.dart (working copy)
|
| @@ -248,9 +248,10 @@
|
| if (!importDir.isEmpty) {
|
| TestUtils.mkdirRecursive(targetDir, importDir);
|
| }
|
| + Path srcPath = sourceDir.join(importPath);
|
| + Path targetPath = targetDir.join(importPath);
|
| // Copy file.
|
| - futureCopies.add(TestUtils.copyFile(sourceDir.join(importPath),
|
| - targetDir.join(importPath)));
|
| + futureCopies.add(TestUtils.copyIfDifferent(srcPath, targetPath));
|
| }
|
|
|
| // Wait until all imports are copied before scheduling test cases.
|
|
|