mirror of https://gerrit.osmocom.org/osmo-dev
ttcn3/wrappers: remove
Leftover from before the script was refactored in Iecba5391dafc353058d369deb513b156534face1. Change-Id: Ic0890f71fe37a136580e12ebade979bcf14574c0changes/91/25191/2
parent
0fa204e179
commit
836bf568ef
|
@ -1,23 +0,0 @@
|
|||
#!/bin/sh -x
|
||||
# Run in a separate script, so we can kill it with "killall"
|
||||
|
||||
DIR="$(readlink -f "$(dirname $0)")"
|
||||
cd "$DIR"
|
||||
PID=""
|
||||
|
||||
cleanup() {
|
||||
echo "Caught signal, cleaning up..."
|
||||
set -x
|
||||
kill "$PID"
|
||||
exit 1
|
||||
}
|
||||
|
||||
trap cleanup "TERM"
|
||||
|
||||
./osmocom-bb/src/target/trx_toolkit/fake_trx.py "$@" &
|
||||
PID="$!"
|
||||
|
||||
set +x
|
||||
while true; do
|
||||
sleep 0.1
|
||||
done
|
|
@ -1,6 +0,0 @@
|
|||
#!/bin/sh -x
|
||||
# Automatically restart osmo-bts-trx while running TTCN3 tests. See docker-playground.git.
|
||||
|
||||
while true; do
|
||||
osmo-bts-trx "$@"
|
||||
done
|
|
@ -1,6 +0,0 @@
|
|||
#!/bin/sh -x
|
||||
# Automatically restart osmo-pcu while running TTCN3 tests. See docker-playground.git's osmo-pcu-master/respawn.sh.
|
||||
|
||||
while true; do
|
||||
osmo-pcu "$@"
|
||||
done
|
Loading…
Reference in New Issue