aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2016-01-11 16:12:01 +0100
committerJacob Erlbeck <jerlbeck@sysmocom.de>2016-02-02 17:06:31 +0100
commit251d609eb2cd7d30896aecb861fe3d6058867967 (patch)
treedca14e5cf6d573753bb111fda3ffe89a6efce8a4 /tests
parent628eceacf1ac24ddae268a4933b897b03457330b (diff)
test: Add function name printfs (TODO)
Some of these are missing and added by this commit. TODO: - Add all of them - Fix ok file(s) Sponsored-by: On-Waves ehf
Diffstat (limited to 'tests')
-rw-r--r--tests/tbf/TbfTest.cpp4
-rw-r--r--tests/tbf/TbfTest.ok2
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/tbf/TbfTest.cpp b/tests/tbf/TbfTest.cpp
index 66fa9825..f68943e6 100644
--- a/tests/tbf/TbfTest.cpp
+++ b/tests/tbf/TbfTest.cpp
@@ -81,6 +81,8 @@ static void test_tbf_tlli_update()
BTS the_bts;
GprsMs *ms, *ms_new;
+ printf("=== start %s ===\n", __func__);
+
the_bts.bts_data()->alloc_algorithm = alloc_algorithm_a;
the_bts.bts_data()->trx[0].pdch[2].enable();
the_bts.bts_data()->trx[0].pdch[3].enable();
@@ -138,6 +140,8 @@ static void test_tbf_tlli_update()
OSMO_ASSERT(ul_tbf->ta() == 6);
OSMO_ASSERT(dl_tbf->ta() == 6);
+
+ printf("=== end %s ===\n", __func__);
}
static uint8_t llc_data[200];
diff --git a/tests/tbf/TbfTest.ok b/tests/tbf/TbfTest.ok
index 0ad9ad47..01d28513 100644
--- a/tests/tbf/TbfTest.ok
+++ b/tests/tbf/TbfTest.ok
@@ -1,5 +1,7 @@
=== start test_tbf_base ===
=== end test_tbf_base ===
+=== start test_tbf_tlli_update ===
+=== end test_tbf_tlli_update ===
=== start test_tbf_delayed_release ===
=== end test_tbf_delayed_release ===
=== start test_tbf_imsi ===