From d2fc351e49e7eea9c4bd93a1cb471449e9cdac13 Mon Sep 17 00:00:00 2001 From: Ben Greear Date: Tue, 19 Jan 2021 11:54:17 -0800 Subject: [PATCH] query-ap: Add example command line to run 'ifconfig -a' --- unit_tests/query_ap.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unit_tests/query_ap.py b/unit_tests/query_ap.py index b16b1ee13..d35f85a4b 100755 --- a/unit_tests/query_ap.py +++ b/unit_tests/query_ap.py @@ -1,5 +1,8 @@ #!/usr/bin/python3 +# Example command line: +#./query_ap.py --testrail-user-id NONE --model ecw5410 --ap-jumphost-address localhost --ap-jumphost-port 7220 --ap-jumphost-password pumpkin77 --ap-jumphost-tty /dev/ttyAP1 --cmd "ifconfig -a" + from UnitTestBase import * parser = argparse.ArgumentParser(description="Query AP", add_help=False)