| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |