summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/context.py
diff options
context:
space:
mode:
authorStefan Kral <sk@typedivision.de>2020-03-26 00:11:05 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-29 12:05:31 +0100
commit80c1002c2e4dd7cdaa6ef40a5d37addcc27ca3da (patch)
tree818b1aa0a2d50c473807b6d7a5404781f3f69357 /meta/lib/oeqa/runtime/context.py
parentef0c0868444b78e146ea7a65b02cc2f79c7b744d (diff)
downloadpoky-80c1002c2e4dd7cdaa6ef40a5d37addcc27ca3da.tar.gz
oeqa: default runtime json results for testexport
Set the json result output dir in the oeqe runtime context to create testresults.json file by default for exported runtime test runs. Use current datetime for the json result property name (not DATETIME from build) to allow multiple result entries. (From OE-Core rev: e6c73ed8d3c5d45f387cab619ca73c21e850582f) Signed-off-by: Stefan Kral <sk@typedivision.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/context.py')
-rw-r--r--meta/lib/oeqa/runtime/context.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py
index 101434a595..3826f27642 100644
--- a/meta/lib/oeqa/runtime/context.py
+++ b/meta/lib/oeqa/runtime/context.py
@@ -47,6 +47,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor):
47 default_data = None 47 default_data = None
48 default_test_data = 'data/testdata.json' 48 default_test_data = 'data/testdata.json'
49 default_tests = '' 49 default_tests = ''
50 default_json_result_dir = '%s-results' % name
50 51
51 default_target_type = 'simpleremote' 52 default_target_type = 'simpleremote'
52 default_manifest = 'data/manifest' 53 default_manifest = 'data/manifest'