various subdirs: add run.sh

Change-Id: I366f706bb09667fb2bc9f0cbb58224aad8ba078e
This commit is contained in:
Neels Hofmeyr 2021-06-10 23:03:09 +02:00 committed by Neels Hofmeyr
parent 64463f7823
commit 2088896c5e
12 changed files with 66 additions and 0 deletions

4
bsc/bts_run.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
id="${1:-1234}"
set -x
while sleep 1; do osmo-bts-omldummy -fCCN,EGPRS,GPRS,IPv6_NSVC,PAGING_COORDINATION,OSMUX 127.0.0.1 $id; done

4
bsc/bts_run_vamos.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
id="${1:-1234}"
set -x
while sleep 1; do osmo-bts-omldummy -fCCN,EGPRS,GPRS,IPv6_NSVC,PAGING_COORDINATION,VAMOS 127.0.0.1 $id; done

6
bsc/run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile || { set +x; echo; make compile 2>&1 | grep error: ; exit 1; }
make -j 5
../start-testsuite.sh BSC_Tests BSC_Tests.cfg $@
../log_merge.sh BSC_Tests --rm

6
bsc/sccplite_run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile || { set +x; echo; make compile 2>&1 | grep error: ; exit 1; }
make -j 5
../start-testsuite.sh BSC_Tests BSC_Tests_SCCPlite.cfg $@
../log_merge.sh BSC_Tests --rm

4
bsc/vamos_bts_run.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
id="${1:-1234}"
set -x
while sleep 1; do osmo-bts-omldummy -f VAMOS 127.0.0.1 $id; done

6
bsc/vamos_run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile
make -j 5
../start-testsuite.sh BSC_Tests BSC_Tests_VAMOS.cfg $@
../log_merge.sh BSC_Tests --rm

6
hnbgw/run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile || { set +x; echo; make compile 2>&1 | grep error: ; exit 1; }
make -j 5
../start-testsuite.sh HNBGW_Tests HNBGW_Tests.cfg $@
../log_merge.sh HNBGW_Tests --rm

6
mgw/run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile || { set +x; echo; make compile 2>&1 | grep error: ; exit 1; }
make -j 5
../start-testsuite.sh MGCP_Test MGCP_Test.cfg $@
../log_merge.sh MGCP_Test --rm

6
msc/run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile || { set +x; echo; make compile 2>&1 | grep error: ; exit 1; }
make -j 5
../start-testsuite.sh MSC_Tests MSC_Tests.cfg $@
../log_merge.sh MSC_Tests --rm

6
pcu/run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile
make -j 5
../start-testsuite.sh PCU_Tests PCU_Tests.cfg $@
../log_merge.sh PCU_Tests --rm

6
sgsn/run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile || { set +x; echo; make compile 2>&1 | grep error: ; exit 1; }
make -j 5
../start-testsuite.sh SGSN_Tests SGSN_Tests.cfg $@
../log_merge.sh SGSN_Tests --rm

6
upf/run.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
set -xe
make compile || { set +x; echo; make compile 2>&1 | grep error: ; exit 1; }
make -j 5
../start-testsuite.sh UPF_Tests UPF_Tests.cfg $@
../log_merge.sh UPF_Tests --rm