Index: tools/testrunner/objects/testcase.py |
diff --git a/tools/testrunner/objects/testcase.py b/tools/testrunner/objects/testcase.py |
index 37e3cb4ec2bd1465a55dec97f8b3341348d92989..00722d768b3b44ebed23a9af8ec2524a463b0da5 100644 |
--- a/tools/testrunner/objects/testcase.py |
+++ b/tools/testrunner/objects/testcase.py |
@@ -41,13 +41,11 @@ |
self.id = None # int, used to map result back to TestCase instance |
self.duration = None # assigned during execution |
self.run = 1 # The nth time this test is executed. |
- self.env = {} |
def CopyAddingFlags(self, variant, flags): |
copy = TestCase(self.suite, self.path, variant, self.flags + flags, |
self.override_shell) |
copy.outcomes = self.outcomes |
- copy.env = self.env |
return copy |
def PackTask(self): |
@@ -58,7 +56,7 @@ |
assert self.id is not None |
return [self.suitename(), self.path, self.variant, self.flags, |
self.override_shell, list(self.outcomes or []), |
- self.id, self.env] |
+ self.id] |
@staticmethod |
def UnpackTask(task): |
@@ -68,7 +66,6 @@ |
test.outcomes = frozenset(task[5]) |
test.id = task[6] |
test.run = 1 |
- test.env = task[7] |
return test |
def SetSuiteObject(self, suites): |