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

Unified Diff: test/codegen_test.dart

Issue 1321103002: makes tests faster, see #304 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: stabalize messages Created 5 years, 4 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
Index: test/codegen_test.dart
diff --git a/test/codegen_test.dart b/test/codegen_test.dart
index c8fa1f6e58e4729e1f1bde2f39b45fec131e5e82..4e49058c11e7a94632b09e6bd1e567ffea9456ce 100644
--- a/test/codegen_test.dart
+++ b/test/codegen_test.dart
@@ -76,14 +76,6 @@ main(arguments) {
return new BatchCompiler(context, options, reporter: reporter).run();
}
- // Remove old output, and `packages` symlinks which mess up the diff.
- var dir = new Directory(expectDir);
- if (dir.existsSync()) dir.deleteSync(recursive: true);
- var packagesDirs = new Directory(inputDir)
- .listSync(recursive: true)
- .where((d) => d is Directory && path.basename(d.path) == 'packages');
- packagesDirs.forEach((d) => d.deleteSync());
-
{
// Expand wacky multitests into a bunch of test files.
// We'll compile each one as if it was an input.

Powered by Google App Engine
This is Rietveld 408576698