mirror of https://gerrit.osmocom.org/osmo-dev
ttcn3: add missing ttcn3-docker-run.sh
After recent refactoring, having this file in /usr/local/bin is required to run the testsuites. Change-Id: I23467136af6deaca69e0b43697a06385cb65444dchanges/97/24497/2
parent
7531cea612
commit
6f7954e869
|
@ -145,10 +145,18 @@ check_dir_testsuite() {
|
|||
prepare_local_bin() {
|
||||
local scripts="
|
||||
${DIR_OSMODEV}/src/docker-playground/common/respawn.sh
|
||||
${DIR_OSMODEV}/src/docker-playground/debian-stretch-titan/ttcn3-docker-run.sh
|
||||
"
|
||||
|
||||
for script in $scripts; do
|
||||
local script_path_localbin="/usr/local/bin/$(basename "$script")"
|
||||
local script_path_localbin
|
||||
local name_install="$(basename "$script")"
|
||||
|
||||
case "$name_install" in
|
||||
ttcn3-docker-run.sh) name_install="ttcn3-docker-run" ;;
|
||||
esac
|
||||
|
||||
script_path_localbin="/usr/local/bin/$name_install"
|
||||
if [ -x "$script_path_localbin" ]; then
|
||||
continue
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue