Step 2: Move test folder to root
[integration/test.git] / test / tools / odl-mdsal-clustering-tests / clustering-performance-test / ovs-scripts / get-total-found.sh
diff --git a/test/tools/odl-mdsal-clustering-tests/clustering-performance-test/ovs-scripts/get-total-found.sh b/test/tools/odl-mdsal-clustering-tests/clustering-performance-test/ovs-scripts/get-total-found.sh
deleted file mode 100755 (executable)
index c1792a7..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-# author__ = "Jan Medved"
-# copyright__ = "Copyright(c) 2014, Cisco Systems, Inc."
-# license__ = "New-style BSD"
-# email__ = "jmedved@cisco.com"
-
-ECHO=`which echo`
-
-TOTAL=0
-i=1
-dname=`dirname $0`
-
-while true;
-do
-    CUR=$((`${dname}/OVS-dump-flows.sh.13 s$i 2> /dev/null |  grep -v "flags=\[more\]" | wc -l` - 1))
-
-    if [ "$CUR" == "-1" ];
-    then
-        break
-    else
-        printf "Switch s%d: %d flows\n" $i $CUR
-        TOTAL=$(($TOTAL + $CUR))
-        i=$(($i + 1))
-    fi
-done
-
-printf "\nTotal: %d\n\n" $TOTAL
-