The script is an interface to run DTS with standard argument parser. Signed-off-by: Juraj Linkeš <juraj.lin...@pantheon.tech> --- dts/main.py | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100755 dts/main.py
diff --git a/dts/main.py b/dts/main.py new file mode 100755 index 0000000000..e228604b52 --- /dev/null +++ b/dts/main.py @@ -0,0 +1,47 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2010-2014 Intel Corporation +# Copyright(c) 2022 PANTHEON.tech s.r.o. +# Copyright(c) 2022 University of New Hampshire +# + +""" +A test framework for testing DPDK. +""" + +import argparse +import logging + +from framework import dts +from framework.settings import DEFAULT_CONFIG_FILE_PATH + + +def main() -> None: + # Read cmd-line args + parser = argparse.ArgumentParser(description="DPDK test framework.") + + parser.add_argument( + "--config-file", + default=DEFAULT_CONFIG_FILE_PATH, + help="configuration file that describes the test cases, SUTs and targets", + ) + + parser.add_argument( + "-v", + "--verbose", + action="store_true", + help="enable verbose output, all message output on screen", +) + + args = parser.parse_args() + + dts.run_all( + args.config_file, + args.verbose, + ) + + +# Main program begins here +if __name__ == "__main__": + logging.raiseExceptions = True + main() -- 2.30.2