| Index: tests/corelib/test_config.dart
|
| diff --git a/tests/corelib/test_config.dart b/tests/corelib/test_config.dart
|
| index 46455f5222820b7d005b6d26ebdfbca14b002551..0d650c1d5f119bcf3cad836287495be3390df69d 100644
|
| --- a/tests/corelib/test_config.dart
|
| +++ b/tests/corelib/test_config.dart
|
| @@ -14,17 +14,12 @@ class CorelibTestSuite {
|
| Function doDone;
|
| String shellPath;
|
| String pathSeparator;
|
| - Map<String, String> configuration;
|
| + Map configuration;
|
| TestExpectationsMap testExpectationsMap;
|
|
|
| - CorelibTestSuite() {
|
| - shellPath = getDartShellFileName() ;
|
| + CorelibTestSuite(Map this.configuration) {
|
| + shellPath = getDartShellFileName(configuration) ;
|
| pathSeparator = new Platform().pathSeparator();
|
| - configuration = {"mode": "debug",
|
| - "arch": "ia32",
|
| - "checked": "true",
|
| - "component": "vm",
|
| - "system": new Platform().operatingSystem()};
|
| }
|
|
|
| void forEachTest(Function onTest, [Function onDone = null]) {
|
|
|