System test refinement
[anna.git] / example / diameter / launcher / deployments / st-client / operation_all.sh
diff --git a/example/diameter/launcher/deployments/st-client/operation_all.sh b/example/diameter/launcher/deployments/st-client/operation_all.sh
new file mode 100755 (executable)
index 0000000..616814d
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/bash
+cd `dirname $0`
+if [ ! -d "ADMLS" ]
+then
+  echo
+  echo "Run './configure.sh' first !"
+  echo
+  exit 1
+fi
+
+for op in `ls ADMLS/*/operation.sh`
+do
+  cd `dirname $op`
+  ./operation.sh $@
+  cd - >/dev/null
+done
+