summaryrefslogtreecommitdiff
path: root/debianpkg/tests
diff options
context:
space:
mode:
Diffstat (limited to 'debianpkg/tests')
-rw-r--r--debianpkg/tests/control3
-rw-r--r--debianpkg/tests/daemons30
2 files changed, 0 insertions, 33 deletions
diff --git a/debianpkg/tests/control b/debianpkg/tests/control
deleted file mode 100644
index 53fd537e2e..0000000000
--- a/debianpkg/tests/control
+++ /dev/null
@@ -1,3 +0,0 @@
-Tests: daemons
-Depends: frr
-Restrictions: needs-root
diff --git a/debianpkg/tests/daemons b/debianpkg/tests/daemons
deleted file mode 100644
index 43966c8347..0000000000
--- a/debianpkg/tests/daemons
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-#---------------
-# Testing frr
-#---------------
-set -e
-
-# modify config file to enable all daemons and copy config files
-CONFIG_FILE=/etc/frr/daemons
-DAEMONS=("zebra" "bgpd" "ospfd" "ospf6d" "ripd" "ripngd" "isisd" "pimd" "fabricd")
-
-for daemon in "${DAEMONS[@]}"
-do
- sed -i -e "s/${daemon}=no/${daemon}=yes/g" $CONFIG_FILE
- cp /usr/share/doc/frr/examples/${daemon}.conf.sample /etc/frr/${daemon}.conf
-done
-
-# reload frr
-/etc/init.d/frr restart > /dev/null 2>&1
-
-# check daemons
-for daemon in "${DAEMONS[@]}"
-do
- echo -n "check $daemon - "
- if pidof -x $daemon > /dev/null; then
- echo "${daemon} OK"
- else
- echo "ERROR: ${daemon} IS NOT RUNNING"
- exit 1
- fi
-done