Index: tools/testrunner/objects/context.py |
diff --git a/tools/testrunner/objects/context.py b/tools/testrunner/objects/context.py |
index 3ea215a708d00c319ea4f691f0dad48cd0008803..1f525b76b3114793b3548f2c740e7427805be0fc 100644 |
--- a/tools/testrunner/objects/context.py |
+++ b/tools/testrunner/objects/context.py |
@@ -28,7 +28,7 @@ |
class Context(): |
def __init__(self, arch, mode, shell_dir, mode_flags, verbose, timeout, |
- isolates, command_prefix, extra_flags): |
+ isolates, command_prefix, extra_flags, noi18n): |
self.arch = arch |
self.mode = mode |
self.shell_dir = shell_dir |
@@ -38,13 +38,14 @@ class Context(): |
self.isolates = isolates |
self.command_prefix = command_prefix |
self.extra_flags = extra_flags |
+ self.noi18n = noi18n |
def Pack(self): |
return [self.arch, self.mode, self.mode_flags, self.timeout, self.isolates, |
- self.command_prefix, self.extra_flags] |
+ self.command_prefix, self.extra_flags, self.noi18n] |
@staticmethod |
def Unpack(packed): |
# For the order of the fields, refer to Pack() above. |
return Context(packed[0], packed[1], None, packed[2], False, |
- packed[3], packed[4], packed[5], packed[6]) |
+ packed[3], packed[4], packed[5], packed[6], packed[7]) |