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

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

Issue 9479013: Remove backends. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More clean up Created 8 years, 10 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: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 70a8d39f453ac078067600fe3bb7c8aa343e1a6e..a8cfc7fbd8664a26e60ec2e377577abadac58e45 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -877,11 +877,7 @@ class DartcCompilationTestSuite extends StandardTestSuite {
String shellPath() => TestUtils.compilerPath(configuration);
List<String> additionalOptions(String filename) {
- filename = new File(filename).fullPathSync().replaceAll('\\', '/');
- Directory tempDir = createOutputDirectory(filename, 'dartc-test');
- return
- [ '--fatal-warnings', '--fatal-type-errors',
- '--out', tempDir.path];
+ return ['--fatal-warnings', '--fatal-type-errors'];
}
void processDirectory() {

Powered by Google App Engine
This is Rietveld 408576698