From 84379e8e7fda8d41b050e643742a8a43c5ae1fc0 Mon Sep 17 00:00:00 2001 From: Martin Winter Date: Fri, 19 May 2017 20:30:40 -0700 Subject: [PATCH] lib: Add different failure comment on processes killed by AddressSanitizer Signed-off-by: Martin Winter --- tests/topotests/lib/topotest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index ca0599771e..6c7d393e5b 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -260,6 +260,8 @@ class Router(Node): addrSanFile.write("### AddressSanitizer error in topotest `%s`, test `%s`, router `%s`\n\n" % (callingTest, callingProc, self.name)) addrSanFile.write(' '+ '\n '.join(addressSantizerLog.group(1).splitlines()) + '\n') addrSanFile.write("\n---------------\n") + return "%s: Daemon %s not running - killed by AddressSanitizer" % (self.name, daemon) + return "%s: Daemon %s not running" % (self.name, daemon) return "" def get_ipv6_linklocal(self): -- 2.39.5