From: Phil Sutter Date: Tue, 17 Nov 2020 15:18:33 +0000 (+0100) Subject: iptables-test.py: Accept multiple test files on commandline X-Git-Tag: v1.8.7~21 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=47251c8bda92b8f655453c52699454b739cc2231;p=thirdparty%2Fiptables.git iptables-test.py: Accept multiple test files on commandline This allows to call the script like so: | # ./iptables-test.py -n extensions/libebt_*.t Signed-off-by: Phil Sutter --- diff --git a/iptables-test.py b/iptables-test.py index 6b6eb611..52897a5d 100755 --- a/iptables-test.py +++ b/iptables-test.py @@ -310,7 +310,7 @@ def show_missing(): # def main(): parser = argparse.ArgumentParser(description='Run iptables tests') - parser.add_argument('filename', nargs='?', + parser.add_argument('filename', nargs='*', metavar='path/to/file.t', help='Run only this test') parser.add_argument('-H', '--host', action='store_true', @@ -359,7 +359,7 @@ def main(): return if args.filename: - file_list = [args.filename] + file_list = args.filename else: file_list = [os.path.join(EXTENSIONS_PATH, i) for i in os.listdir(EXTENSIONS_PATH)