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

Side by Side Diff: tools/testing/dart/configuration.dart

Issue 2915843003: Simplify test_suite.dart. (Closed)
Patch Set: Fix path in test. Created 3 years, 6 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 unified diff | Download patch
« no previous file with comments | « tools/testing/dart/compiler_configuration.dart ('k') | tools/testing/dart/drt_updater.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:convert'; 6 import 'dart:convert';
7 import 'dart:io'; 7 import 'dart:io';
8 8
9 import 'compiler_configuration.dart'; 9 import 'compiler_configuration.dart';
10 import 'http_server.dart'; 10 import 'http_server.dart';
11 import 'path.dart'; 11 import 'path.dart';
12 import 'runtime_configuration.dart'; 12 import 'runtime_configuration.dart';
13 import 'test_suite.dart'; 13 import 'utils.dart';
14 14
15 /// All of the contextual information to determine how a test suite should be 15 /// All of the contextual information to determine how a test suite should be
16 /// run. 16 /// run.
17 /// 17 ///
18 /// Includes the compiler used to compile the code, the runtime the result is 18 /// Includes the compiler used to compile the code, the runtime the result is
19 /// executed on, etc. 19 /// executed on, etc.
20 class Configuration { 20 class Configuration {
21 Configuration( 21 Configuration(
22 {this.architecture, 22 {this.architecture,
23 this.compiler, 23 this.compiler,
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 728
729 case macos: 729 case macos:
730 return 'xcodebuild/'; 730 return 'xcodebuild/';
731 } 731 }
732 732
733 throw "unreachable"; 733 throw "unreachable";
734 } 734 }
735 735
736 String toString() => "System($name)"; 736 String toString() => "System($name)";
737 } 737 }
OLDNEW
« no previous file with comments | « tools/testing/dart/compiler_configuration.dart ('k') | tools/testing/dart/drt_updater.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698