ttcn3/wrappers: remove

Leftover from before the script was refactored in
Iecba5391dafc353058d369deb513b156534face1.

Change-Id: Ic0890f71fe37a136580e12ebade979bcf14574c0
This commit is contained in:
Oliver Smith 2021-08-12 14:08:59 +02:00
parent 0fa204e179
commit 836bf568ef
3 changed files with 0 additions and 35 deletions

View File

@ -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

View File

@ -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

View File

@ -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