summaryrefslogtreecommitdiffstats
path: root/test/mocks/emssimulator/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/mocks/emssimulator/install.sh')
-rwxr-xr-xtest/mocks/emssimulator/install.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/mocks/emssimulator/install.sh b/test/mocks/emssimulator/install.sh
new file mode 100755
index 000000000..e3069aae2
--- /dev/null
+++ b/test/mocks/emssimulator/install.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+readonly old_pwd=$PWD
+cd swm/sw_server_simulator
+
+for i in `ls -1`; do
+ if [ -d $i ]; then
+ cd $i
+ echo $i
+ zip -r ${i}.zip *
+ mv ${i}.zip ..
+ cd $OLDPWD
+ fi
+done
+
+cd $old_pwd
+