diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-28 13:16:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-02-28 13:17:03 +0000 |
commit | 80d29f1cb1e077cc457a6917fa57561a88921fca (patch) | |
tree | 0ec1db2e2e0905240878a20aafa2ce0b40409112 | |
parent | 46d80752fd7e1945d31c83b23089bd38bff9a3b1 (diff) | |
download | poky-80d29f1cb1e077cc457a6917fa57561a88921fca.tar.gz |
resulttool/store: Fix missing variable causing testresult corruption
(From OE-Core rev: a89846cca457de10249881ab695f0f883bfb6f40)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/resulttool/store.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/resulttool/store.py b/scripts/lib/resulttool/store.py index 43e57b913c..5e33716c3d 100644 --- a/scripts/lib/resulttool/store.py +++ b/scripts/lib/resulttool/store.py | |||
@@ -57,7 +57,7 @@ def store(args, logger): | |||
57 | revisions[revision] = {} | 57 | revisions[revision] = {} |
58 | if suite not in revisions[revision]: | 58 | if suite not in revisions[revision]: |
59 | revisions[revision][suite] = {} | 59 | revisions[revision][suite] = {} |
60 | revisions[revision][suite] = results[suite][result] | 60 | revisions[revision][suite][result] = results[suite][result] |
61 | 61 | ||
62 | logger.info("Found %d revisions to store" % len(revisions)) | 62 | logger.info("Found %d revisions to store" % len(revisions)) |
63 | 63 | ||