From: Klement Sekera Date: Tue, 13 Mar 2018 20:22:32 +0000 (+0100) Subject: make test: handle multiple failures in one case X-Git-Tag: v18.04-rc1~138 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=833e76151fb8535a35781e227e6e69d657aa9300;p=vpp.git make test: handle multiple failures in one case Change-Id: I5451ddec4bfdede12653415f90bf991e81494033 Signed-off-by: Klement Sekera --- diff --git a/test/run_tests.py b/test/run_tests.py index fd8ca1f50ab..a3d533633dc 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -99,7 +99,10 @@ def run_forked(suite): link_path = '%s%s-FAILED' % (failed_dir, lttd) global_logger.error("Creating a link to the failed " + "test: %s -> %s" % (link_path, lttd)) - os.symlink(last_test_temp_dir, link_path) + try: + os.symlink(last_test_temp_dir, link_path) + except: + pass api_post_mortem_path = "/tmp/api_post_mortem.%d" % vpp_pid if os.path.isfile(api_post_mortem_path): global_logger.error("Copying api_post_mortem.%d to %s" %