diff options
author | Klement Sekera <klement.sekera@gmail.com> | 2022-04-25 16:39:09 +0200 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2022-04-29 09:58:48 +0000 |
commit | 687cf6faf29af9ae683965b09d4648fd60f786af (patch) | |
tree | bdeba33b59e5329d2003b49abb15c1f9c5680b11 /test/run_tests.py | |
parent | 16ce09db9e3d7cf588037c80138438095a0ac200 (diff) |
tests: fix handling failed test case
Add missing parameter where required.
Type: fix
Signed-off-by: Klement Sekera <klement.sekera@gmail.com>
Change-Id: I8cd7c31848836e3233cb79d1dd21884167db4354
Diffstat (limited to 'test/run_tests.py')
-rw-r--r-- | test/run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/run_tests.py b/test/run_tests.py index 7209ddfab5d..8cb631ed660 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -922,7 +922,8 @@ if __name__ == '__main__': for test_case_info in result.failed_test_cases_info: handle_failed_suite(test_case_info.logger, test_case_info.tempdir, - test_case_info.vpp_pid) + test_case_info.vpp_pid, + config.vpp) if test_case_info in result.core_crash_test_cases_info: check_and_handle_core(test_case_info.vpp_bin_path, test_case_info.tempdir, |