diff options
Diffstat (limited to 'scripts/test-remote-image')
-rwxr-xr-x | scripts/test-remote-image | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/test-remote-image b/scripts/test-remote-image index f3a44ebe51..97d03d7a78 100755 --- a/scripts/test-remote-image +++ b/scripts/test-remote-image | |||
@@ -38,6 +38,7 @@ lib_path = scripts_path + '/lib' | |||
38 | sys.path = sys.path + [lib_path] | 38 | sys.path = sys.path + [lib_path] |
39 | 39 | ||
40 | import scriptpath | 40 | import scriptpath |
41 | import argparse_oe | ||
41 | 42 | ||
42 | # Add meta/lib to sys.path | 43 | # Add meta/lib to sys.path |
43 | scriptpath.add_oe_lib_path() | 44 | scriptpath.add_oe_lib_path() |
@@ -82,7 +83,7 @@ log = logger_create() | |||
82 | # Define and return the arguments parser for the script | 83 | # Define and return the arguments parser for the script |
83 | def get_args_parser(): | 84 | def get_args_parser(): |
84 | description = "This script is used to run automated runtime tests using remotely published image files. You should prepare the build environment just like building local images and running the tests." | 85 | description = "This script is used to run automated runtime tests using remotely published image files. You should prepare the build environment just like building local images and running the tests." |
85 | parser = argparse.ArgumentParser(description=description) | 86 | parser = argparse_oe.ArgumentParser(description=description) |
86 | parser.add_argument('--image-types', required=True, action="store", nargs='*', dest="image_types", default=None, help='The image types to test(ex: core-image-minimal).') | 87 | parser.add_argument('--image-types', required=True, action="store", nargs='*', dest="image_types", default=None, help='The image types to test(ex: core-image-minimal).') |
87 | parser.add_argument('--repo-link', required=True, action="store", type=str, dest="repo_link", default=None, help='The link to the remote images repository.') | 88 | parser.add_argument('--repo-link', required=True, action="store", type=str, dest="repo_link", default=None, help='The link to the remote images repository.') |
88 | parser.add_argument('--required-packages', required=False, action="store", nargs='*', dest="required_packages", default=None, help='Required packages for the tests. They will be built before the testing begins.') | 89 | parser.add_argument('--required-packages', required=False, action="store", nargs='*', dest="required_packages", default=None, help='Required packages for the tests. They will be built before the testing begins.') |