test: Add shell script to drop the OML in fixed intervals

This commit is contained in:
Holger Hans Peter Freyther 2010-11-16 08:57:12 +01:00
parent dab8e27755
commit e17c030b76
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#!/bin/sh
sleep 3
echo "enable"
sleep 1
echo "drop bts connection 0 oml"
sleep 1

View File

@ -0,0 +1,8 @@
#!/bin/sh
while true;
do
echo "Going to drop the OML connection"
./drop-oml.sh | telnet 127.0.0.1 4242
sleep 58m
done