summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/core/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/core/runner.py b/meta/lib/oeqa/core/runner.py
index 0f158c39f1..44ffecb0cd 100644
--- a/meta/lib/oeqa/core/runner.py
+++ b/meta/lib/oeqa/core/runner.py
@@ -52,7 +52,7 @@ class OETestRunner(_TestRunner):
52 if xmlEnabled: 52 if xmlEnabled:
53 if not kwargs.get('output'): 53 if not kwargs.get('output'):
54 kwargs['output'] = os.path.join(os.getcwd(), 54 kwargs['output'] = os.path.join(os.getcwd(),
55 'TestResults_%s' % time.strftime("%Y%m%d%H%M%S")) 55 'TestResults_%s_%s' % (time.strftime("%Y%m%d%H%M%S"), os.getpid()))
56 56
57 super(OETestRunner, self).__init__(*args, **kwargs) 57 super(OETestRunner, self).__init__(*args, **kwargs)
58 self.tc = tc 58 self.tc = tc