From d43ec1b014c4b37bc3ecbff0b2f0cea56638489c Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 22 Jun 2022 16:51:16 -0700 Subject: [PATCH] test-runner: fix result/monitor options An earlier commit fixed several options but ended up breaking others. The result_parent/monitor_parent options are hidden from the user and only meant to be passed to the kernel but they relied on the fact that the underscore was present, not a dash. This updates the argument to use a dash: --result-parent --monitor-parent Fixes: 00e41eb0ff ("test-runner: Fix parsing for some arguments") --- tools/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/runner.py b/tools/runner.py index b018a0ad..d39b560f 100644 --- a/tools/runner.py +++ b/tools/runner.py @@ -117,8 +117,8 @@ class RunnerCoreArgParse(ArgumentParser): type=str, help='Use physical adapters for tests (passthrough)') self.add_argument('--testhome', help=SUPPRESS) - self.add_argument('--monitor_parent', help=SUPPRESS) - self.add_argument('--result_parent', help=SUPPRESS) + self.add_argument('--monitor-parent', help=SUPPRESS) + self.add_argument('--result-parent', help=SUPPRESS) # Prevent --autotest/--unittest from being used together auto_unit_group = self.add_mutually_exclusive_group()