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

Unified Diff: tests/standalone/test_config.dart

Issue 8540002: Use the configuration for determining the binary to use for testing. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/src/TestRunnerTest.dart ('k') | tools/test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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]) {
« no previous file with comments | « tests/standalone/src/TestRunnerTest.dart ('k') | tools/test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698