Skip to content

Changes

Summary

  1. schema: Accept band GSM-900 (details)
  2. example: Add scenarios to select BTS for a specific band (details)
  3. nanobts: Add support to run nanobts on the 900 band (details)
  4. example: Run tests on both nanobts with different bands (details)
  5. templates: osmo-bsc: Remove no longer available cfgs (details)
  6. event_loop: Use glib as mainloop impl and move modem to use event_loop (details)
  7. Drop event_loop global functions and import MainLoop (details)
  8. nanobts: Attempt at fixing race condition using ipaccess-config after (details)
  9. ms: Create a cumulative distribution function class (details)
  10. ms: Create a simple epoll (or kqueue) based event loop (details)
  11. ms: Create an event server to handle Unix datagram messages (details)
  12. ms: Add lua script support utilities (details)
  13. ms: Lua part of location update testing (details)
  14. ms: Create template for the osmocom-bb mobile application (details)
  15. ms: Create a starter for virtphy and mobile application (details)
  16. ms: Add a first test to use all parts of the system (details)
  17. ms: Add a main function to start all of it (details)
  18. event_loop: Avoid leaking active timeouts on poll exception (details)
  19. contrib: Enable address-sanitize in builds (details)
  20. contrib: build-osm-bts-sysmo: openbsc dep no longer needed (details)
  21. contrib: build-osmo-trx: Enable addr sanitize for osmo-trx (details)
  22. build-osmo-trx: Disable asan in osmo-trx builds (details)
  23. modem: Catch exception: call removed while waiting to become active (details)
  24. osmo-trx binary is now called osmo-trx-uhd (details)
  25. bts_osmotrx: Don't use binary name as inst name (details)
  26. Check physical channel configs (details)
  27. bts: Refactor conf_for_bsc_osmo (details)
  28. bts: Pass defaults config name at construct time (details)
  29. bts: Move conf_for_bsc_prepare from bts_osmo to bts (details)
  30. bts: Allow setting amount of TRX and timeslot in cfg and from test at (details)
  31. suite: Set suite subdir lib part of syspath so tests can import their (details)
  32. tests: voice: Move logic to lib/testlib.py (details)
  33. tests: voice: test voice calls on TCH/H timeslots (details)
  34. tests: voice: Move mo_mt_call.py to mo_mt_call_tchf.py (details)
  35. tests: dyn_ts_*: Add tests to verify dynamic timeslots during phone (details)
  36. default-suites.conf: Add dyn ts suites (details)
  37. default-suites.conf: Fix typo in previous commit (details)
  38. suites: Remove rebase artifacts from latest commits (details)
  39. Unload suite local modules after suite exit to avoid collisions (details)
  40. util: Fix unloading of suite lib import path (details)
  41. tests: dyn_ts_*: Add tests to verify dyn ts with gprs disabled (details)
  42. contrib: common: Record repo curr rev in have_repo instead of build_repo (details)
  43. contrib: common: create_bin_tgz supports sbin dir now (details)
  44. contrib: Add jenkins-build-osmocom-bb.sh to build osmocon (details)
  45. testenv: Provide tests with access to process module (details)
  46. contrib: build-osmocom-bb: Download and install osmocom-bb fw from OBS (details)
  47. templates: osmo-bts: Use BTS assigned IP addr to bind CTRL and VTY iface (details)
  48. bsc: Add API to mock BSC RSL IP addr (details)
  49. process: Move cleanup log inside cleanup method (details)
  50. Add option to expect bts/pcu failures and respawn its processes (details)
  51. osmo-bsc.cfg.tmpl: Remove unused nd recently removed option dest (details)
  52. powersupply_sispm: Add port number to log name (details)
  53. event_loop: Log parameters during wait timeout exception (details)
  54. osmo_ms_driver: Use the two new config options for the mobile (details)
  55. ggsn: Bind VTY and CTRL ifaces to assigned ip addr (details)
  56. ms: Use the new API to pass credentials to the event server (details)
  57. resources.conf: Move nanobts address to differentiate them from local (details)
Commit 05a838e2590f6125c8b8629feea8012fc3668795 by Pau Espin Pedrol
schema: Accept band GSM-900
Change-Id: I274c3010f33776b2967ee01de027c44b794cc5d4
The file was modified src/osmo_gsm_tester/schema.py
Commit 3f480a0e05f10fe31c6bbf8643fcdc407a2aab64 by Pau Espin Pedrol
example: Add scenarios to select BTS for a specific band
Change-Id: Id830536c9337151818901cb25c3a568a77cdbf5e
The file was addedexample/scenarios/band-1900.conf
The file was addedexample/scenarios/band-1800.conf
The file was addedexample/scenarios/band-900.conf
Commit fef9c1c5cff443f9e928035697e2fb4be857d9ff by Pau Espin Pedrol
nanobts: Add support to run nanobts on the 900 band
Change-Id: I13b494630ea835f4bed38ccc77f6a4d5e18326af
The file was modified example/resources.conf.prod
The file was modified example/resources.conf.rnd
The file was modified src/osmo_gsm_tester/bts_nanobts.py
The file was modified example/defaults.conf
Commit 47d2d3a83824e2474ad821bdec755c506dee2732 by Pau Espin Pedrol
example: Run tests on both nanobts with different bands
Change-Id: Iee2220e1770caa891713dbd18e8f4a4741c1fbe4
The file was modified example/default-suites.conf
Commit 2c0ae6288d525a9e81271b5b005a0d64ba18edac by Pau Espin Pedrol
templates: osmo-bsc: Remove no longer available cfgs
osmo-bsc c74a5616bf1c77ac40ddd92f4927dca7a1b45bc8 removed these cfg
options as they are dead code.
Change-Id: I2fb63d31d5d7424b48ed2cfc694d09db072db485
The file was modified src/osmo_gsm_tester/templates/osmo-bsc.cfg.tmpl
Commit bf176e420ee20e526fc408a8a16d4dc7811ce703 by Pau Espin Pedrol
event_loop: Use glib as mainloop impl and move modem to use event_loop
Several benefits:
- We can add APIs to poll on fds in the future (for smpp socket for
instance) instead of using busy polling.
- During wait(), we now block in the glib mainloop instead of sleeping
0.1 secs and not handling events during that time.
- We remove glib mainloop specific bits from modem.py
Change-Id: I8c3bc44bbe443703077110cdc67207e9cbb43767
The file was modified src/osmo_gsm_tester/event_loop.py
The file was modified src/osmo_gsm_tester/modem.py
Commit 9a4631c789b1a141a95ae39c92372e9b00b77239 by Pau Espin Pedrol
Drop event_loop global functions and import MainLoop
Take the chance to identify and drop modules importing event_loop but
not using it.
Change-Id: Ifa1940cd00138ebc72fbcfd45a0e28246f7a5ed9
The file was modified src/osmo_gsm_tester/modem.py
The file was modified src/osmo_gsm_tester/process.py
The file was modified src/osmo_gsm_tester/bts_osmo.py
The file was modified src/osmo_gsm_tester/bts_nanobts.py
The file was modified src/osmo_gsm_tester/esme.py
The file was modified src/osmo_gsm_tester/pcu_sysmo.py
The file was modified src/osmo_gsm_tester/bts.py
The file was modified src/osmo_gsm_tester/powersupply_sispm.py
The file was modified src/osmo_gsm_tester/powersupply.py
The file was modified src/osmo_gsm_tester/event_loop.py
The file was modified src/osmo_gsm_tester/bts_octphy.py
The file was modified src/osmo_gsm_tester/pcu_osmo.py
The file was modified src/osmo_gsm_tester/bts_osmotrx.py
The file was modified src/osmo_gsm_tester/suite.py
The file was modified src/osmo_gsm_tester/test.py
Commit 48fce86b3eb53a5bc3d14808f1dab4f3e0385db1 by Pau Espin Pedrol
nanobts: Attempt at fixing race condition using ipaccess-config after
power up
It seems there's a period of time in between the nanoBTS starts
announcing itself and it can actually be managed by the BSC
(ipaccess-config in this case). If ipaccess-config is called quickly
after nanoBTS it first announced, its TCP conn will be rejected with a
TCO RST, and ipaccess-config will fail. Let's see if waiting a few
seconds is enough to have this working more reliably.
Change-Id: Iec8adb2cd13d808a6ca1843dc95b81bd1a97d1c0
The file was modified src/osmo_gsm_tester/bts_nanobts.py
Commit 38adaa96bf03d69c2fda573fa395371e523a4a9d by holger
ms: Create a cumulative distribution function class
We are using the CDF to decide which percentage of the jobs should be
running at a given point. The x-axis is time and the y-axis the
percentage of how many jobs should be running.
There are three functions to do this. The first one is a constant which
would result in everything being started right now, one to start them
linearly and the last (formula from Qt/3rdparty) to first accelerate and
decelerate slowly.
Change-Id: I9e3064f4c3c4c7af5d3491f850090516e541f4d3
The file was addedsrc/osmo_ms_driver/__init__.py
The file was addedselftest/cdf_test.py
The file was addedsrc/osmo_ms_driver/cdf.py
The file was addedselftest/cdf_test.ok
Commit b7749a72b44c0999ba5fe869b705dd440f3f6d49 by holger
ms: Create a simple epoll (or kqueue) based event loop
Create a C-like single process event loop. It could be powered by
select/epoll or kqueue. It should scale to many open fds but we will not
have that many.
Change-Id: Iea06f33870cab9f21e9a1a1feb9758467343dd29
The file was addedsrc/osmo_ms_driver/simple_loop.py
Commit e7ae51fcaac7d100fc1f22f6c6df951776530b5b by holger
ms: Create an event server to handle Unix datagram messages
Create an EventServer that will create a unix domain socket and dispatch
incoming datagram messages. The lua remotes are not passing credentials
so this is a one way communication channel for now. Tests can register
to handle the message.
Change-Id: Ida97c570e8e741410f2dba4a231a8058ca96da25
The file was addedsrc/osmo_ms_driver/event_server.py
Commit 4a62bb0086ed0769159aa3450181dd980f1274db by holger
ms: Add lua script support utilities
Add a JSON encoder and a small module to sent registration and other
events per unix datagram socket.
json.lua fetched using:
$ wget -O src/osmo_ms_driver/lua/json.lua \
https://raw.githubusercontent.com/rxi/json.lua/master/json.lua
Change-Id: I43ae84a944c7f33e41d5de0880d4aaab3378809b
The file was addedsrc/osmo_ms_driver/lua/json.lua
The file was addedsrc/osmo_ms_driver/lua/ms_support.lua
Commit 28bcaf0f2ccdecf06d11554123a287b1b3d0d27d by holger
ms: Lua part of location update testing
The lua part to start the MS and then signal the first successful
Location Update.
Change-Id: Ica5aa0c2f86d0e5d8a2bc4dc0652de18762dd156
The file was addedsrc/osmo_gsm_tester/templates/osmo-mobile-lu.lua.tmpl
Commit 6af1c18b17ada2cf5207426321633d938ccc1a1b by holger
ms: Create template for the osmocom-bb mobile application
Change-Id: I9296f42edfab57762f8dd317d63231298cda5430
The file was addedsrc/osmo_gsm_tester/templates/osmo-mobile.cfg.tmpl
Commit ff19a5e7c2025207d03e99ca781dd30adc2f57fe by holger
ms: Create a starter for virtphy and mobile application
In the long run we might not want to start the virtphy but for now
virtphy+mobile belong together. Start virtphy first as mobile will not
handle a missing socket gracefully.
Change-Id: I5c6d742842d7f3e0a1858436ef3f8634d8c0582d
The file was addedsrc/osmo_ms_driver/starter.py
Commit 30cc021af5cad9590b26f4cccc83c244ccf782b1 by holger
ms: Add a first test to use all parts of the system
This is an interim solution but is bringing all parts together. We will
need to:
* Abstract this into a base class
* Be able to mix different tests without interfering with each
  other (e.g. 10k LU tests, 2k SMS sending)
* The event loop will need to handle multiple timers/timeouts
* Stats printing should print more information and test pass/fail
* The test should quit early if everything has already passed
Change-Id: Id3277ed0f0f9ee734569bedd4752564eb68c9cfd
The file was addedsrc/osmo_ms_driver/location_update_test.py
Commit c490cdeebdd43a1777c16f3f1f272df815b9c6cf by holger
ms: Add a main function to start all of it
Add a main file to start everything. All parameters need to be made
configurable. Composition of testcase and IMSI ranges need to be
configurable as well. This is left for future commits. Right now it can
execute a single UL test.
Start with: export PATH=../osmocom-bb/src/host/layer23/src/mobile:$PATH
export PATH=../osmocom-bb/src/host/virt_phy/src/:$PATH export
PYTHONPATH=$PWD/src
python3 -mosmo_ms_driver
Change-Id: I58c938500a067eebb213750e56d8bf4d8af43df2
The file was addedsrc/osmo_ms_driver/__main__.py
Commit b6ab1da0af08dae1a9f7382532e42975f5633d84 by Pau Espin Pedrol
event_loop: Avoid leaking active timeouts on poll exception
It was spotted that when an error ocurred during poll generating an
exception to finish the test (osmo-msc ended prematurely), then the
active wait() condition was kept being checked for later tests, making
all followup tests fail.
That's because in case of exception we were not making sure the timeout
is removed and it kept firing forever.
Change-Id: I5c93cd67b2b83c0ecee96fbc6c4200b419bdf73f
The file was modified src/osmo_gsm_tester/event_loop.py
Commit 008f6165ed1009644e7ac624590caf1ee2631cf7 by Pau Espin Pedrol
contrib: Enable address-sanitize in builds
Don't enable it for binaries built with sysmocom's cross-toolchain since
it doesn't contain required libasan.
Also, don't enable it on openbsc since we don't have an enable-sanitize
flag there.
Change-Id: Ibef6c2fc497bce0d799116a854a48872f9ca16d7
The file was modified contrib/jenkins-build-osmo-msc.sh
The file was modified contrib/jenkins-build-osmo-bts.sh
The file was modified contrib/jenkins-build-osmo-hlr.sh
The file was modified contrib/jenkins-build-osmo-mgw.sh
The file was modified contrib/jenkins-build-osmo-pcu.sh
The file was modified contrib/jenkins-build-osmo-stp.sh
The file was modified contrib/jenkins-build-osmo-sgsn.sh
The file was modified contrib/jenkins-build-osmo-bsc.sh
The file was modified contrib/jenkins-build-osmo-ggsn.sh
The file was modified contrib/jenkins-build-osmo-trx.sh
Commit 4a338c7dbac31133406154d1e27faea1dc25f291 by Pau Espin Pedrol
contrib: build-osm-bts-sysmo: openbsc dep no longer needed
Change-Id: Iafd5ee1df001719ff6165ada996359b92116671e
The file was modified contrib/jenkins-build-osmo-bts-sysmo.sh
Commit ec3852f1bd12d61998aabbcf44b8056946542191 by Pau Espin Pedrol
contrib: build-osmo-trx: Enable addr sanitize for osmo-trx
Change-Id: Iad90c7c8c2098680276de000c36bec0224f9746d
The file was modified contrib/jenkins-build-osmo-trx.sh
Commit 1cd017d0c7e02e8e9ceed69387ecc86fb7d76c02 by Pau Espin Pedrol
build-osmo-trx: Disable asan in osmo-trx builds
Change-Id: Ic4ebbc3f66fd9de2343d486ed20a0f08fc11e326
The file was modified contrib/jenkins-build-osmo-trx.sh
Commit ccb1bc686d9985da03eb30f77509601c1b2a459d by Pau Espin Pedrol
modem: Catch exception: call removed while waiting to become active
This can happen while in a test we use: wait(ms_mo.call_is_active,
mo_cid)
And then answer fails for whatever reason, after a timeout ofono will
remove the call object:
/sierra_2: DBG: 'org.ofono.VoiceCallManager'.CallRemoved() ->
/sierra_2/voicecall01
As a result, during next call o call_is_active() will try to get the
call object, but it doesn't exist anymore and an exception will be
created in method call_state during call to systembus_get().
Change-Id: I02b7e76425754372756493761819f18f1e3106c1
The file was modified src/osmo_gsm_tester/modem.py
Commit 553eda638ce2cd49a430a8b1d6ec06953befe322 by Pau Espin Pedrol
osmo-trx binary is now called osmo-trx-uhd
Change-Id: Ibf111ba89b24964127b9c1db7102953e1dba3181
The file was modified contrib/jenkins-build-osmo-trx.sh
The file was modified src/osmo_gsm_tester/bts_osmotrx.py
Commit 7d4bdf2daff4f897c3aa6fa54552cb163e09169d by Pau Espin Pedrol
bts_osmotrx: Don't use binary name as inst name
Change-Id: Iee20738f2aa750aa9035a9e54ad667d8753ea12e
The file was modified src/osmo_gsm_tester/bts_osmotrx.py
Commit c9b63767963d70574783de147d455f19bb4f9214 by Pau Espin Pedrol
Check physical channel configs
Change-Id: I5894678e0d6f306173cc550dd6806a7d6f8a4c11
The file was modified src/osmo_gsm_tester/resource.py
The file was modified src/osmo_gsm_tester/schema.py
Commit 530681fd86c4a4dab18e4575c9cdf339623ffa49 by Pau Espin Pedrol
bts: Refactor conf_for_bsc_osmo
Move duplicated code into a method in the superclass.
Change-Id: Ie27932f94142f667c3fb8c054b77e04afa0d5cbb
The file was modified src/osmo_gsm_tester/bts_osmo.py
The file was modified src/osmo_gsm_tester/bts_sysmo.py
The file was modified src/osmo_gsm_tester/bts_osmotrx.py
The file was modified src/osmo_gsm_tester/bts_nanobts.py
The file was modified src/osmo_gsm_tester/bts_octphy.py
Commit e519462d60cbaaa9920e8a737f55d166ee55c709 by Pau Espin Pedrol
bts: Pass defaults config name at construct time
It will be needed later at construction time when resolving the num of
trx.
Change-Id: I2c6a46ead14010f714897ea178917327215823e7
The file was modified src/osmo_gsm_tester/bts_nanobts.py
The file was modified src/osmo_gsm_tester/bts_octphy.py
The file was modified src/osmo_gsm_tester/bts_osmotrx.py
The file was modified src/osmo_gsm_tester/bts_osmo.py
The file was modified src/osmo_gsm_tester/bts.py
The file was modified src/osmo_gsm_tester/bts_sysmo.py
Commit e699912a235456c008ded853ea0c43cfee9c5b63 by Pau Espin Pedrol
bts: Move conf_for_bsc_prepare from bts_osmo to bts
nanobts inherits directly from bts.Bts, so we need to move
conf_for_bsc_prepare there to make nanobts work again.
Fixes: 530681fd86c4a4dab18e4575c9cdf339623ffa49 Change-Id:
I4305eefb4056ed7614118532e271efe780f4a87f
The file was modified src/osmo_gsm_tester/bts.py
The file was modified src/osmo_gsm_tester/bts_osmo.py
Commit 39df7f466843579fb22c46fc159d14792cb10b87 by Pau Espin Pedrol
bts: Allow setting amount of TRX and timeslot in cfg and from test at
runtime
The num_trx attribute for a given BTS states the number of TRX to be
used by that BTS. If more than num_trx are configured in trx_list in the
cfg file, then only up to num_trx are taken into account. If a num_trx
value higher than max_trx is specified throuygh config file or at
runtime by the test, an exception is raised explaining the issue.
The num/max_trx attributes are overlayed along the config levels
(generic -> bsc_bts -> specific bts-type -> specific resource object).
This way we can specify a long list of trx+timeslot config in the
generic config (bsc_bts), and tune for each model and specific BTS which
is the desired default number of TRX, as well as the maximum supported
per type.
Change-Id: I7f46eaf7a16f03268653299c93600c0443f691ac
The file was modified src/osmo_gsm_tester/bts_octphy.py
The file was modified src/osmo_gsm_tester/resource.py
The file was modified example/defaults.conf
The file was modified src/osmo_gsm_tester/bts.py
Commit 7e02d20b46ef521ced0e1f2fcb33b329453e9a6d by Pau Espin Pedrol
suite: Set suite subdir lib part of syspath so tests can import their
own modules
Change-Id: I3307c3ab314bb7a88d3c22c7c270c9f05fe6e03e
The file was modified src/osmo_gsm_tester/util.py
The file was modified src/osmo_gsm_tester/suite.py
Commit 510ed801ed3507291513f2a110af44e10a0a06ba by Pau Espin Pedrol
tests: voice: Move logic to lib/testlib.py
This way we can have several tests sharing similar logic.
Change-Id: I5cfcc56970380a7c5400186fac5f504263d63c5f
The file was addedsuites/voice/lib/testlib.py
The file was modified suites/voice/mo_mt_call.py
Commit b2ce2f22218da052dc6a6617e172bc9c97a8e116 by Pau Espin Pedrol
tests: voice: test voice calls on TCH/H timeslots
Change-Id: I897757a21fee516ce96808a180121b09f06a0fea
The file was addedsuites/voice/mo_mt_call_tchh.py
Commit 3bf1e13b13d499457f6f17f7c41622870ca5fcc6 by Pau Espin Pedrol
tests: voice: Move mo_mt_call.py to mo_mt_call_tchf.py
Change-Id: I7306e62ad4c4294370690cf9006871f798a7b9ec
The file was addedsuites/voice/mo_mt_call_tchf.py
The file was removedsuites/voice/mo_mt_call.py
Commit e07e1b69e9725fd090d62537b22d39db2bc30594 by Pau Espin Pedrol
tests: dyn_ts_*: Add tests to verify dynamic timeslots during phone
calls
Two different test suites are created since we want to run them with
different HW, because some HW support one type of PDCH channels, and
other HW supports the other one.
Change-Id: Id5e61eaff39ac7a6585dc7de2aeb2469dd2ce726
The file was addedsuites/dyn_ts_osmo/lib/testlib.py
The file was addedsuites/dyn_ts_ipa/suite.conf
The file was addedsuites/dyn_ts_ipa/lib/testlib.py
The file was addedsuites/dyn_ts_osmo/suite.conf
The file was addedsuites/dyn_ts_ipa/mo_mt_call_dyn_ipa.py
The file was addedsuites/dyn_ts_osmo/mo_mt_call_dyn_osmo.py
Commit 1ffe768ca8aabc5fa2c06fa8e91cae5e7d5fbe2c by Pau Espin Pedrol
default-suites.conf: Add dyn ts suites
Change-Id: Iec7c8d8c3617f11a5ee12c02bd75ed6822d76aa9
The file was modified example/default-suites.conf
Commit a80e89c3d715de4169d5f6f2ef1620dfd95a37a8 by Pau Espin Pedrol
default-suites.conf: Fix typo in previous commit
Change-Id: Ib1903324df8eb9f506b62dc0b9d2aa4a4a5179d7
The file was modified example/default-suites.conf
Commit 415f34d3e9916a9af0ef6a69186ef7cce980c32c by Pau Espin Pedrol
suites: Remove rebase artifacts from latest commits
Change-Id: I8afc446d4291810c63bfaeabb7167113667dd8d1
The file was modified suites/voice/mo_mt_call_tchf.py
The file was modified suites/dyn_ts_ipa/mo_mt_call_dyn_ipa.py
The file was modified suites/dyn_ts_osmo/mo_mt_call_dyn_osmo.py
The file was modified suites/voice/mo_mt_call_tchh.py
Commit 155a355e01d63669912ad0cfe2a1969b486373fb by Pau Espin Pedrol
Unload suite local modules after suite exit to avoid collisions
Since sys.path is modified idynamically to load modules from "lib"
subdir of each suite, from python env point of view all those modules
share a namespace. As a result, there can be name collisions.
If a name collision appears (eg test1 loads "testlib.py" and test2
afterwards also loads its own "testlib.py"), then python interpreter
thinks the testlib.py module is already loaded, so test2 ends up using
"testlib.py" from test1.
The way to solve this is to make suite local modules to live only
through the scope of the suite, and unload the modules once the suite is
finished.
Change-Id: I4efe815f85bc4ec2ca91aa9c2d3a369048f21571
The file was modified suites/voice/mo_mt_call_tchh.py
The file was modified suites/dyn_ts_ipa/mo_mt_call_dyn_ipa.py
The file was modified src/osmo_gsm_tester/suite.py
The file was modified suites/voice/mo_mt_call_tchf.py
The file was modified suites/dyn_ts_osmo/mo_mt_call_dyn_osmo.py
Commit f32c41519eae34129467bf904d63ca1ab1567259 by Pau Espin Pedrol
util: Fix unloading of suite lib import path
Change-Id: Iac81151f5baec092a3d15bbe6541b5bc007e6a03
The file was modified src/osmo_gsm_tester/util.py
Commit 78f7c753a348f9aa6cd1a88f3da46d840ecebedb by Pau Espin Pedrol
tests: dyn_ts_*: Add tests to verify dyn ts with gprs disabled
Change-Id: If943ae0fb4e56787df02b09dea7387cb13eb9db3
The file was addedsuites/dyn_ts_ipa/mo_mt_call_dyn_ipa_no_gprs.py
The file was modified suites/dyn_ts_ipa/mo_mt_call_dyn_ipa.py
The file was addedsuites/dyn_ts_osmo/mo_mt_call_dyn_osmo_no_gprs.py
The file was modified suites/dyn_ts_osmo/mo_mt_call_dyn_osmo.py
Commit 70439968478bcc591c8534dadf1edd02bc09100f by Pau Espin Pedrol
contrib: common: Record repo curr rev in have_repo instead of build_repo
This way scripts making use only of have_repo (to have build specific
insturctions) can still benefit from that code.
Change-Id: I03149942ac1d279a15c71df3eb880c331c8fc155
The file was modified contrib/jenkins-build-common.sh
Commit 1828d352c15b2cf5ac1d11c6d40b2695902a63ce by Pau Espin Pedrol
contrib: common: create_bin_tgz supports sbin dir now
This is a preparation for inclusion of osmocom-bb build job, which
installs binaries such as osmocon in sbin.
Change-Id: I562721af82e481e926ee65dbcd9dcc5b55057ae8
The file was modified contrib/jenkins-build-osmo-bts.sh
The file was modified contrib/jenkins-build-common.sh
The file was modified contrib/jenkins-build-osmo-bsc.sh
The file was modified contrib/jenkins-build-osmo-mgw.sh
Commit f4406b2b22388927b03fb54988faf2d5fe883a49 by Pau Espin Pedrol
contrib: Add jenkins-build-osmocom-bb.sh to build osmocon
Change-Id: Ic5b29951d3fd143dce5826138c84301a9797b1ef
The file was addedcontrib/jenkins-build-osmocom-bb.sh
Commit 878b2c6619c59c255b42ba76c5d502487aa8c0a2 by Pau Espin Pedrol
testenv: Provide tests with access to process module
Some tests may want to start/stop/manages processes themselves. By using
the process module from osmo-gsm-tester, we make that possible easily,
providing with useful features such as requesting a suite to stop it on
cleanup.
Change-Id: I8e018107cbec81299ec2228bfff933fb3b0bb6cd
The file was modified src/osmo_gsm_tester/testenv.py
The file was modified src/osmo_gsm_tester/test.py
Commit 618bb3a6bf066efa5430f185a4a6659274cbae67 by Pau Espin Pedrol
contrib: build-osmocom-bb: Download and install osmocom-bb fw from OBS
As it's quite complex to build osmocom firmware nowadays (a specific old
release of gcc and binutils are required to build it), instead download
the already built binaries from OBS.
Change-Id: I2571268d91e2430a270e51438608e7dbd121e76d
The file was modified contrib/jenkins-build-osmocom-bb.sh
Commit 58cd83c3ec6fb7152184a25c39c8209584884ef8 by Pau Espin Pedrol
templates: osmo-bts: Use BTS assigned IP addr to bind CTRL and VTY iface
Change-Id: Ib1c3022a6c531ef8c6a5ba31927762806abc37ac
The file was modified src/osmo_gsm_tester/templates/osmo-bts-octphy.cfg.tmpl
The file was modified src/osmo_gsm_tester/templates/osmo-bts-trx.cfg.tmpl
The file was modified src/osmo_gsm_tester/templates/osmo-bts-sysmo.cfg.tmpl
Commit 63f2d47b3e6f0d60ef57485aba7410ec1d58decd by Pau Espin Pedrol
bsc: Add API to mock BSC RSL IP addr
Change-Id: I9ca67964e656943b50967a27a88054fd3e484672
The file was modified src/osmo_gsm_tester/osmo_bsc.py
The file was modified src/osmo_gsm_tester/templates/osmo-bsc.cfg.tmpl
Commit 06ada458cfbd0cec5aec8ec12122af4dfd77a177 by Pau Espin Pedrol
process: Move cleanup log inside cleanup method
Change-Id: I72ad453e9dc8340946d7e7d041643fe8ef97439f
The file was modified src/osmo_gsm_tester/process.py
Commit b1526b9979ae1b04819cc6130a7fb36e97c82811 by Pau Espin Pedrol
Add option to expect bts/pcu failures and respawn its processes
Some tests may want to reproduce some scenarios in which it is expected
that a BTS process is stopped, for instance if the BSC link is dropped.
Provide a keepalive parameter to start() for bts and pcu objects to
inform suite that failures are expected and that it should keep them
alive in case that ocurrs by respawning the BTS process.
Change-Id: Ia2a7539f9fad457125ac9b60a52a52999e885ba8
The file was modified src/osmo_gsm_tester/process.py
The file was modified src/osmo_gsm_tester/pcu.py
The file was modified src/osmo_gsm_tester/bts_osmo.py
The file was modified src/osmo_gsm_tester/suite.py
The file was modified src/osmo_gsm_tester/bts_nanobts.py
The file was modified src/osmo_gsm_tester/bts_osmotrx.py
The file was modified src/osmo_gsm_tester/bts.py
The file was modified src/osmo_gsm_tester/bts_sysmo.py
The file was modified src/osmo_gsm_tester/pcu_sysmo.py
The file was modified src/osmo_gsm_tester/pcu_osmo.py
Commit e9749444961c0a0296a8e08f0f86003d213112a8 by Pau Espin Pedrol
osmo-bsc.cfg.tmpl: Remove unused nd recently removed option dest
This VTY cmd has been removed in osmo-bsc.git
68e4be9c845e25f53aea511b1c57340a9da5825c.
Change-Id: I48c0b8a7b2a0088887f1309efc40bcf1da0f1626
The file was modified src/osmo_gsm_tester/templates/osmo-bsc.cfg.tmpl
Commit 7f4807a4bca610694ce44dd58bb6597a068ac869 by Pau Espin Pedrol
powersupply_sispm: Add port number to log name
This way it can easily be spotted which port is being triggered in case
someone wants to manually test it.
Change-Id: Ibd2c70170d97a786e37b6838b1ed6d4eb637ad8b
The file was modified src/osmo_gsm_tester/powersupply_sispm.py
Commit e523665e9c718f3e8c355c69db67bb12c7e85a98 by Pau Espin Pedrol
event_loop: Log parameters during wait timeout exception
Change-Id: I1cf104392bfd11ad263264738eb4d8fa60550a5d
The file was modified src/osmo_gsm_tester/event_loop.py
Commit 5eb4f0e6a21d2a070fed3648236775f4a1953f21 by holger
osmo_ms_driver: Use the two new config options for the mobile
Avoid being stuck in c7 state and use the c7-any-timeout with a low
value. Do not attempt to store SMS in the home directory (if they are
received).
Change-Id: I4bb59130a04852bc43af9ef3602b129f40e9e170
The file was modified src/osmo_gsm_tester/templates/osmo-mobile.cfg.tmpl
Commit 99efe820e442fb413a7f9da98bd3666fec5a4b86 by Pau Espin Pedrol
ggsn: Bind VTY and CTRL ifaces to assigned ip addr
Change-Id: I26735a21cd53183dfe0a75e5bd24954d583c354f
The file was modified src/osmo_gsm_tester/templates/osmo-ggsn.cfg.tmpl
Commit 05895a912d9aa39ea1d3672873d469a1b1faa5e9 by Holger Freyther
ms: Use the new API to pass credentials to the event server
We are using the "autobind" feature of Linux to get a special socket
address. This allows us to have roughly 2^20 clients on the system.
Change-Id: Ie9b9ac6267f40345baf7dbb3becaecf264a5df5f
The file was modified src/osmo_ms_driver/event_server.py
The file was modified src/osmo_ms_driver/location_update_test.py
The file was modified src/osmo_ms_driver/lua/ms_support.lua
Commit 80ce34bb88b2e2d572db5c9d8d16a8302569e5c7 by Pau Espin Pedrol
resources.conf: Move nanobts address to differentiate them from local
IPs
nanobts IP addresses are assigned through DHCP, and are not local to the
main unit. Let's use another subset for this DHCP pool as we usually use
.50ish for static local IP addresses.
Change-Id: Ibdb0dd97a490aaa555a7bf53cf43cc5a5533a012
The file was modified example/resources.conf.prod
The file was modified example/resources.conf.rnd