System test refinement
[anna.git] / example / diameter / launcher / deployments / st-client / operation_all.sh
1 #!/bin/bash
2 cd `dirname $0`
3 if [ ! -d "ADMLS" ]
4 then
5   echo
6   echo "Run './configure.sh' first !"
7   echo
8   exit 1
9 fi
10
11 for op in `ls ADMLS/*/operation.sh`
12 do
13   cd `dirname $op`
14   ./operation.sh $@
15   cd - >/dev/null
16 done
17