diff options
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r-- | meta/lib/oeqa/runtime/cases/ptest.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ptest.py b/meta/lib/oeqa/runtime/cases/ptest.py index aef79f62a9..eb284df439 100644 --- a/meta/lib/oeqa/runtime/cases/ptest.py +++ b/meta/lib/oeqa/runtime/cases/ptest.py | |||
@@ -67,6 +67,11 @@ class PtestRunnerTest(OERuntimeTestCase): | |||
67 | extras[testname] = {'status': result} | 67 | extras[testname] = {'status': result} |
68 | 68 | ||
69 | failed_tests = {} | 69 | failed_tests = {} |
70 | |||
71 | for section in sections: | ||
72 | if 'exitcode' in sections[section].keys(): | ||
73 | failed_tests[section] = sections[section]["log"] | ||
74 | |||
70 | for section in results: | 75 | for section in results: |
71 | failed_testcases = [ "_".join(test.translate(trans).split()) for test in results[section] if results[section][test] == 'FAILED' ] | 76 | failed_testcases = [ "_".join(test.translate(trans).split()) for test in results[section] if results[section][test] == 'FAILED' ] |
72 | if failed_testcases: | 77 | if failed_testcases: |