summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/topotests/lib/topotest.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py
index 1d69eb685a..1bdf8b10d0 100644
--- a/tests/topotests/lib/topotest.py
+++ b/tests/topotests/lib/topotest.py
@@ -933,6 +933,10 @@ class Router(Node):
for daemon in self.daemons:
if (self.daemons[daemon] == 1) and not (daemon in daemonsRunning):
sys.stderr.write("%s: Daemon %s not running\n" % (self.name, daemon))
+ if daemon is "staticd":
+ sys.stderr.write("You may have a copy of staticd installed but are attempting to test against\n")
+ sys.stderr.write("a version of FRR that does not have staticd, please cleanup the install dir\n")
+
# Look for core file
corefiles = glob.glob('{}/{}/{}_core*.dmp'.format(
self.logdir, self.name, daemon))