From 4f76eb81e9d8da87c61c804254e61c3047b23b43 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sat, 14 Mar 2015 12:09:23 +0200 Subject: [PATCH] tests: Add --valgrind argument to parallel-vm.py Signed-off-by: Jouni Malinen --- tests/hwsim/vm/parallel-vm.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/hwsim/vm/parallel-vm.py b/tests/hwsim/vm/parallel-vm.py index e55dfee27..4622512c2 100755 --- a/tests/hwsim/vm/parallel-vm.py +++ b/tests/hwsim/vm/parallel-vm.py @@ -330,6 +330,9 @@ def main(): p.add_argument('--long', dest='long', action='store_const', const=True, default=False, help="include long-duration test cases") + p.add_argument('--valgrind', dest='valgrind', action='store_const', + const=True, default=False, + help="run tests under valgrind") p.add_argument('params', nargs='*') args = p.parse_args() num_servers = args.num_servers @@ -337,6 +340,8 @@ def main(): if args.debug: debug_level = logging.DEBUG extra_args = [] + if args.valgrind: + extra_args += [ '--valgrind' ] if args.long: extra_args += [ '--long' ] if args.codecov: