diff options
author | Jon Mason <jdmason@kudzu.us> | 2019-06-02 14:29:12 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-18 11:28:58 +0100 |
commit | bdc1b24bc2ffb4f51f67b12a86a40d396b627c0a (patch) | |
tree | 2f7b00740c5fbd0e9e92bde6159687e9cc9db9e1 /meta/lib | |
parent | 5523c5a7e56e2b0e9ec869d3a8cf8eb2e83781bf (diff) | |
download | poky-bdc1b24bc2ffb4f51f67b12a86a40d396b627c0a.tar.gz |
resulttool: modify to be multi-machine
Currently, the code will sum all of the different machine results into a
single report of the tests results. This can lead to confusion as to
which machine may be experiencing issues. Modify the code to store the
results in a per machine basis and report them accordingly.
(From OE-Core rev: 7ba5a0af31605eaf91eb75b5f673f4caf81361dc)
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/resulttooltests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/resulttooltests.py b/meta/lib/oeqa/selftest/cases/resulttooltests.py index 10eb9c12d9..dac5c46801 100644 --- a/meta/lib/oeqa/selftest/cases/resulttooltests.py +++ b/meta/lib/oeqa/selftest/cases/resulttooltests.py | |||
@@ -56,7 +56,7 @@ class ResultToolTests(OESelftestTestCase): | |||
56 | 'test4': {'status': 'ERROR'}, | 56 | 'test4': {'status': 'ERROR'}, |
57 | 'test5': {'status': 'SKIPPED'}}} | 57 | 'test5': {'status': 'SKIPPED'}}} |
58 | report = ResultsTextReport() | 58 | report = ResultsTextReport() |
59 | result_report = report.get_aggregated_test_result(None, result_data) | 59 | result_report = report.get_aggregated_test_result(None, result_data, 'DummyMachine') |
60 | self.assertTrue(result_report['passed'] == 2, msg="Passed count not correct:%s" % result_report['passed']) | 60 | self.assertTrue(result_report['passed'] == 2, msg="Passed count not correct:%s" % result_report['passed']) |
61 | self.assertTrue(result_report['failed'] == 2, msg="Failed count not correct:%s" % result_report['failed']) | 61 | self.assertTrue(result_report['failed'] == 2, msg="Failed count not correct:%s" % result_report['failed']) |
62 | self.assertTrue(result_report['skipped'] == 1, msg="Skipped count not correct:%s" % result_report['skipped']) | 62 | self.assertTrue(result_report['skipped'] == 1, msg="Skipped count not correct:%s" % result_report['skipped']) |