diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2017-08-23 14:49:07 +0200 |
---|---|---|
committer | Pau Espin Pedrol <pespin@sysmocom.de> | 2017-08-23 12:56:40 +0000 |
commit | b33fe854427001449fe4f25c11e26b584f1ddee6 (patch) | |
tree | eaad8f08e94080c12ce1eaa2a9b8593f116c385e | |
parent | 404e150c691bbdc9f03e95b14d123cebda4bca9c (diff) |
Add scenarios for each osmo-bts-trx type
This way we can run tests with a specific instance of an osmo-bts-trx,
for instance we may want to run some tests with an Ettus B200 and also
with a sysmoCell 5000.
Change-Id: I5fd78d79b8bfab8ccacc4666563b66b6da9f2bde
-rw-r--r-- | example/default-suites.conf | 4 | ||||
-rw-r--r-- | example/resources.conf | 2 | ||||
-rw-r--r-- | example/scenarios/trx-b200.conf | 4 | ||||
-rw-r--r-- | example/scenarios/trx-sysmocell5000.conf | 4 |
4 files changed, 11 insertions, 3 deletions
diff --git a/example/default-suites.conf b/example/default-suites.conf index eba7dea..72a90db 100644 --- a/example/default-suites.conf +++ b/example/default-suites.conf @@ -1,6 +1,6 @@ - sms:sysmo - aoip_sms:sysmo -- sms:trx -- aoip_sms:trx +- sms:trx-b200 +- aoip_sms:trx-b200 - smpp - aoip_smpp diff --git a/example/resources.conf b/example/resources.conf index a09e80a..2f08c93 100644 --- a/example/resources.conf +++ b/example/resources.conf @@ -14,7 +14,7 @@ bts: addr: 10.42.42.114 band: GSM-1800 -- label: Ettus B210 +- label: Ettus B200 type: osmo-bts-trx ipa_unit_id: 6 addr: 10.42.42.50 diff --git a/example/scenarios/trx-b200.conf b/example/scenarios/trx-b200.conf new file mode 100644 index 0000000..2bad7e8 --- /dev/null +++ b/example/scenarios/trx-b200.conf @@ -0,0 +1,4 @@ +resources: + bts: + - label: Ettus B200 + type: osmo-bts-trx diff --git a/example/scenarios/trx-sysmocell5000.conf b/example/scenarios/trx-sysmocell5000.conf new file mode 100644 index 0000000..62e9a3c --- /dev/null +++ b/example/scenarios/trx-sysmocell5000.conf @@ -0,0 +1,4 @@ +resources: + bts: + - label: sysmoCell 5000 + type: osmo-bts-trx |