aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/bin/onos-check-nodes
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/tools/test/bin/onos-check-nodes')
-rwxr-xr-xframework/src/onos/tools/test/bin/onos-check-nodes20
1 files changed, 0 insertions, 20 deletions
diff --git a/framework/src/onos/tools/test/bin/onos-check-nodes b/framework/src/onos/tools/test/bin/onos-check-nodes
deleted file mode 100755
index 69187b6a..00000000
--- a/framework/src/onos/tools/test/bin/onos-check-nodes
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-# -----------------------------------------------------------------------------
-# Checks whether all and only the ONOS instances configured active.
-# -----------------------------------------------------------------------------
-
-aux=/tmp/stc-$$.log
-trap "rm -f $aux $aux.1 $aux.2 2>/dev/null" EXIT
-
-onos ${1:-$OCI} "onos:nodes" | grep -v /bin/client > $aux
-cat $aux
-
-# Normalize the nodes
-cut -d= -f3 $aux | cut -d: -f1 | sort > $aux.1
-
-# Normalize the expected nodes
-nodes=${2:-$ONOS_INSTANCES}
-(for node in $nodes; do echo $node; done) | sort > $aux.2
-
-# Check for differences
-diff $aux.1 $aux.2