blob: f5d785acb5a4a35d1a4b182e7bd60874657af889 [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
Masayoshi Kobayashi9142f0c2013-04-08 22:24:42 +00007echo "Raw data at /tmp/.pingall.result.$$"
Masayoshi Kobayashi454a4362013-04-08 07:44:45 +00008dsh "cd ONOS/web; ./pingallm-local.py $1" > /tmp/.pingall.result.$$
9cat /tmp/.pingall.result.$$ | grep "Pingall flow" | sort -n -k 4
10cat /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)}'
11