summaryrefslogtreecommitdiffstats
path: root/scripts/resulttool
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-04-18 21:57:18 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-04-25 00:05:15 +0100
commit454b8d2cdc6f79a51e610dae92c22352850c3f7c (patch)
treed0ac6b12860e3a20d348ef99a1d2b53cecbd67bd /scripts/resulttool
parent235bcf0c504e7ea253ccfb28d600898117c64c1f (diff)
downloadopenembedded-core-contrib-454b8d2cdc6f79a51e610dae92c22352850c3f7c.tar.gz
resulttool: Add log subcommand
Adds a subcommand for dumping various logs from test results Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/resulttool')
-rwxr-xr-xscripts/resulttool2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/resulttool b/scripts/resulttool
index 18ac101923..9477667a87 100755
--- a/scripts/resulttool
+++ b/scripts/resulttool
@@ -49,6 +49,7 @@ import resulttool.store
import resulttool.regression
import resulttool.report
import resulttool.manualexecution
+import resulttool.log
logger = scriptutils.logger_create('resulttool')
def main():
@@ -66,6 +67,7 @@ def main():
subparsers.add_subparser_group('analysis', 'analysis', 100)
resulttool.regression.register_commands(subparsers)
resulttool.report.register_commands(subparsers)
+ resulttool.log.register_commands(subparsers)
args = parser.parse_args()
if args.debug: