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

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

Issue 2915843003: Simplify test_suite.dart. (Closed)
Patch Set: 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
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 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 732
733 case macos: 733 case macos:
734 return 'xcodebuild/'; 734 return 'xcodebuild/';
735 } 735 }
736 736
737 throw "unreachable"; 737 throw "unreachable";
738 } 738 }
739 739
740 String toString() => "System($name)"; 740 String toString() => "System($name)";
741 } 741 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698