aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/framework.py2
-rw-r--r--test/run_tests.py6
2 files changed, 7 insertions, 1 deletions
diff --git a/test/framework.py b/test/framework.py
index 008bda3b..869a3402 100644
--- a/test/framework.py
+++ b/test/framework.py
@@ -205,7 +205,7 @@ class VppTestCase(unittest.TestCase):
except:
pass
if coredump_size is None:
- coredump_size = "coredump-size unlimited"
+ coredump_size = "full-coredump"
cls.vpp_cmdline = [cls.vpp_bin, "unix",
"{", "nodaemon", debug_cli, coredump_size, "}",
"api-trace", "{", "on", "}",
diff --git a/test/run_tests.py b/test/run_tests.py
index 9614080d..999252d1 100644
--- a/test/run_tests.py
+++ b/test/run_tests.py
@@ -57,6 +57,12 @@ def run_forked(suite):
"runner process (last test running was "
"`%s' in `%s')!" %
(last_test, last_test_temp_dir))
+ failed_dir = os.getenv('VPP_TEST_FAILED_DIR')
+ lttd = last_test_temp_dir.split("/")[-1]
+ 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)
if last_test_temp_dir and last_test_vpp_binary:
core_path = "%s/core" % last_test_temp_dir
if os.path.isfile(core_path):