As part of the solution to replace Testopia to store testresult, OEQA testimage need to output testresult into json files, where these json testresult files will be stored into git repository by the future test-case-management tools.
By default, testimage will write json testresult, to disable this, specify OEQA_SKIP_OUTPUT_JSON="1" as configuration. Signed-off-by: Yeoh Ee Peng <[email protected]> --- meta/classes/testimage.bbclass | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 39de191..0adaf60 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass @@ -306,6 +306,18 @@ def testimage_main(d): bb.fatal('%s - FAILED - tests were interrupted during execution' % pn, forcelog=True) results.logDetails() results.logSummary(pn) + if (d.getVar('OEQA_SKIP_OUTPUT_JSON')) == '1': + bb.debug(2, 'Skip the OEQA output json testresult as OEQA_SKIP_OUTPUT_JSON=1') + else: + workdir = d.getVar("WORKDIR") + image_basename = d.getVar("IMAGE_BASENAME") + json_result_dir = os.path.join(workdir, + 'temp', + 'json_testresults-%s' % os.getpid(), + 'runtime', + machine, + image_basename) + results.logDetailsInJson(json_result_dir) if not results.wasSuccessful(): bb.fatal('%s - FAILED - check the task log and the ssh log' % pn, forcelog=True) -- 2.7.4 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
