blob: 900373b936f54798648a47107cf8ea7785407a45 [file] [log] [blame]
Ray Milkeyc3456632015-08-24 17:06:29 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Checks that all intents in the system have a given state.
4# -----------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9aux=/tmp/stc-$$.log
10trap "rm -f $aux 2>/dev/null" EXIT
11target=${1:-$OCI}
12
13set -x
14for i in 1 2 3; do
15 onos $target "onos:intents" | grep "state=$2" >> $aux && cat $aux && exit 0
16 sleep 1
17done
18
19cat $aux
20exit 1
21