X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Frun_tests.py;h=3476ef046681666990d4459d59e5d48787ea7431;hb=a5ee900fb75201bbfceaf13c8bc57a13ed094988;hp=158494acd9e68aa9fb011973c9402e4f5419c0a2;hpb=9b6ece79521a4628fc4116378862db1bdb77be49;p=vpp.git diff --git a/test/run_tests.py b/test/run_tests.py index 158494acd9e..3476ef04668 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -13,6 +13,7 @@ from debug import spawn_gdb from log import global_logger from discover_tests import discover_tests from subprocess import check_output, CalledProcessError +from util import check_core_path # timeout which controls how long the child has to finish after seeing # a core dump in test temporary directory. If this is exceeded, parent assumes @@ -136,6 +137,7 @@ def run_forked(suite): if os.path.isfile(core_path): global_logger.error("Core-file exists in test temporary " "directory: %s!" % core_path) + check_core_path(global_logger, core_path) global_logger.debug("Running `file %s':" % core_path) try: info = check_output(["file", core_path])