From 97b9d2ddd95d5e6b7ae3a2aa089b360bee428039 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 24 Aug 2016 15:14:01 -0700 Subject: 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 --- framework/test/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/test') 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: -- cgit v1.2.3