blob: 0ffbf57afb611490eeb67d36d5134c6a7bd4b51f [file] [log] [blame]
Masayoshi Kobayashi454a4362013-04-08 07:44:45 +00001#! /bin/bash
2if [ $# != 1 ]; then
3 echo "$0 flowdef_file"
4elif [ ! -f ${HOME}/ONOS/web/$1 ]; then
5 echo "no such flowdef file: $1"
6fi
7dsh "cd ONOS/web; ./pingallm-local.py $1" > /tmp/.pingall.result.$$
8cat /tmp/.pingall.result.$$ | grep "Pingall flow" | sort -n -k 4
9cat /tmp/.pingall.result.$$ | grep "Pingall Result" | awk '{s+=$5; f+=$7; i+=$9}END{printf("Pingall Result: success %d fail %d incomplete %d\n",s,f,i)}'
10