| Index: tests/standalone/test_config.dart
|
| diff --git a/tests/standalone/test_config.dart b/tests/standalone/test_config.dart
|
| index 2d3b989ea11ccfb173a713617ce118d1df1d4e29..5f82c107d24d6e257be2b1b46c46f29a8189c1f3 100644
|
| --- a/tests/standalone/test_config.dart
|
| +++ b/tests/standalone/test_config.dart
|
| @@ -17,14 +17,9 @@ class StandaloneTestSuite {
|
| Map<String, String> configuration;
|
| TestExpectationsMap testExpectationsMap;
|
|
|
| - StandaloneTestSuite() {
|
| - shellPath = getDartShellFileName() ;
|
| + StandaloneTestSuite(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]) {
|
|
|