From: Klement Sekera Date: Tue, 10 Oct 2017 04:44:05 +0000 (+0200) Subject: make test: fix DEBUG=core error X-Git-Tag: v18.04-rc0~330 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F42%2F9242%2F2;p=vpp.git make test: fix DEBUG=core error Change-Id: I703b2866a1607d6a2fad215e90b5cf2d7afdfd0d Signed-off-by: Klement Sekera --- diff --git a/test/Makefile b/test/Makefile index 00d70400076..f8da35098ab 100644 --- a/test/Makefile +++ b/test/Makefile @@ -19,6 +19,8 @@ ifeq ($(DEBUG),gdb) FORCE_FOREGROUND=1 else ifeq ($(DEBUG),gdbserver) FORCE_FOREGROUND=1 +else ifeq ($(DEBUG),core) +FORCE_FOREGROUND=1 else FORCE_FOREGROUND=0 endif diff --git a/test/hook.py b/test/hook.py index f34e0c5b1f6..77a2fc5bb23 100644 --- a/test/hook.py +++ b/test/hook.py @@ -62,7 +62,7 @@ class PollHook(Hook): def on_crash(self, core_path): if self.testcase.debug_core: - if not spawn_gdb(self.testcase.vpp_bin, core_path): + if not spawn_gdb(self.testcase.vpp_bin, core_path, self.logger): self.logger.error( "Debugger '%s' does not exist or is not an executable.." % gdb_path)