diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2016-08-24 15:14:01 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2016-10-07 13:21:19 -0700 |
commit | 97b9d2ddd95d5e6b7ae3a2aa089b360bee428039 (patch) | |
tree | a3523ce965e5eaadd6cc3a12a32a5f511c191462 /framework/test | |
parent | 6c7793d04d529333f07a6396330b623a2f4c6d71 (diff) |
framework: Bump JSON on disk format to version 9
This change makes the TestResult.pid field into a list of ints instead
of a list. This will be used by the multiple test per process tests to
ensure that all PIDs are recorded when the cherry features is invoked.
This is groundwork for later patches in the series.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'framework/test')
-rw-r--r-- | framework/test/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/test/base.py b/framework/test/base.py index 63fcaf4c4..b667b1569 100644 --- a/framework/test/base.py +++ b/framework/test/base.py @@ -322,7 +322,7 @@ class Test(object): universal_newlines=True, **_EXTRA_POPEN_ARGS) - self.result.pid = proc.pid + self.result.pid.append(proc.pid) if not _SUPPRESS_TIMEOUT: out, err = proc.communicate(timeout=self.timeout) else: |