osmo-hlr/tests
Vadim Yanitskiy fbd736ef37 src/db.c: integrate SQLite3 with talloc allocator
This change introduces an optional feature that allows to make
SQLite3 use talloc for all internal allocations. This would
facilitate finding memleaks. OsmoHLR needs to be configured
with '--enable-sqlite-talloc'.

  full talloc report on 'OsmoHLR' (total 292168 bytes in 449 blocks)
    struct osmo_gsup_server        contains    162 bytes in   3 blocks (ref 0)
      ...
    struct db_context              contains 288407 bytes in 420 blocks (ref 0)
      hlr.db                       contains      7 bytes in   1 blocks (ref 0)
    SQLite3                        contains 288192 bytes in 418 blocks (ref 0)
      db.c:95                      contains     48 bytes in   1 blocks (ref 0)
      db.c:95                      contains      2 bytes in   1 blocks (ref 0)
      ...

Unfortunately, old SQLite3 versions (such as 3.8.2) run out
of memory when trying to initialize a new database:

  DDB ERROR  db.c:88 (7) statement aborts at 3: []
  DDB ERROR  db.c:420 Unable to set Write-Ahead Logging: out of memory
  DDB ERROR  db.c:88 (7) statement aborts at 3: []
  DDB ERROR  db.c:238 Unable to prepare SQL statement
             'SELECT name FROM sqlite_master WHERE type='table' AND name=?'
  ...

I've noticed a huge difference in heap usage footprint compared to
generic malloc. At the same time, the recent versions (at least
3.24.0), work just fine.

Change-Id: Icfe67ed0f063b63e6794f9516da3003d01cf20a7
2019-07-30 17:15:17 +00:00
..
auc tests: use -no-install libtool flag to avoid ./lt-* scripts 2019-03-19 13:04:49 +00:00
db src/db.c: integrate SQLite3 with talloc allocator 2019-07-30 17:15:17 +00:00
gsup tests: use -no-install libtool flag to avoid ./lt-* scripts 2019-03-19 13:04:49 +00:00
gsup_server tests: use -no-install libtool flag to avoid ./lt-* scripts 2019-03-19 13:04:49 +00:00
Makefile.am VTY tests: fill DB before running test 2019-01-24 15:29:08 +00:00
test_nodes.vty Create subscribers on demand 2019-05-19 14:42:46 +07:00
test_subscr_create_on_demand.vty Create subscribers on demand 2019-05-19 14:42:46 +07:00
test_subscriber.ctrl test_subscriber.ctrl: test against octal/hex interpretation of id 2017-10-27 02:37:20 +02:00
test_subscriber.sql test_subscriber.ctrl: test against octal/hex interpretation of id 2017-10-27 02:37:20 +02:00
test_subscriber.vty VTY: add subscriber update network-access-mode 2019-07-15 14:13:46 +02:00
test_subscriber.vty.sql VTY: integrate IMEI 2019-01-24 15:29:08 +00:00
test_subscriber_errors.ctrl ctrl test: fix: adjust expectations after stricter ctrl parsing 2018-01-07 22:27:08 +01:00
testsuite.at db_hlr: zero-initialize "struct tm" 2019-06-04 12:41:54 +02:00