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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 239003002: Reduce test.dart memory usage. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 4a12b7a80afbf7db0e0a8e73d4225234a2a7d4cf..b6eaccdf7dcef008564a7efb9c52928c31eef066 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -50,7 +50,6 @@ typedef void CreateTest(Path filePath,
{bool isNegativeIfChecked,
bool hasCompileErrorIfChecked,
bool hasStaticWarning,
- Set<String> multitestOutcome,
String multitestKey,
Path originTestPath});
@@ -575,14 +574,12 @@ class TestInformation {
bool isNegativeIfChecked;
bool hasCompileErrorIfChecked;
bool hasStaticWarning;
- Set<String> multitestOutcome;
String multitestKey;
TestInformation(this.filePath, this.optionsFromFile,
this.hasCompileError, this.hasRuntimeError,
this.isNegativeIfChecked, this.hasCompileErrorIfChecked,
this.hasStaticWarning,
- this.multitestOutcome,
{this.multitestKey, this.originTestPath}) {
assert(filePath.isAbsolute);
if (originTestPath == null) originTestPath = filePath;
@@ -1025,7 +1022,6 @@ class StandardTestSuite extends TestSuite {
{bool isNegativeIfChecked: false,
bool hasCompileErrorIfChecked: false,
bool hasStaticWarning: false,
- Set<String> multitestOutcome: null,
String multitestKey,
Path originTestPath}) {
// Cache the test information for each test case.
@@ -1036,7 +1032,6 @@ class StandardTestSuite extends TestSuite {
isNegativeIfChecked,
hasCompileErrorIfChecked,
hasStaticWarning,
- multitestOutcome,
multitestKey: multitestKey,
originTestPath: originTestPath);
cachedTests.add(info);
« tools/testing/dart/test_runner.dart ('K') | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698