aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_tests.py
diff options
context:
space:
mode:
authorKlement Sekera <ksekera@cisco.com>2019-10-29 11:03:47 +0000
committerKlement Sekera <ksekera@cisco.com>2019-10-29 11:26:45 +0000
commitd743dffcd0e423d796612119baa86b4c17641b98 (patch)
tree730ac1eccf1290fc29746f58623f2370639ccffe /test/run_tests.py
parent669f4e3416282ef022e6c59d09656b0563e5aae6 (diff)
tests: fix TEST= filtering for python3
Type: fix Change-Id: Iceb60e8a507120434cfc68758476ff5351b05f58 Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'test/run_tests.py')
-rw-r--r--test/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_tests.py b/test/run_tests.py
index b6c178f234f..a34cf48a32f 100644
--- a/test/run_tests.py
+++ b/test/run_tests.py
@@ -822,7 +822,7 @@ if __name__ == '__main__':
# don't fork if requiring interactive terminal
print('Running tests in foreground in the current process')
full_suite = unittest.TestSuite()
- map(full_suite.addTests, suites)
+ full_suite.addTests(suites)
result = VppTestRunner(verbosity=verbose,
failfast=failfast,
print_summary=True).run(full_suite)