edge/test: Rename test_rlc_decoder to test_rlc_unit_decoder

This test only covers RLC data units and not whole RLC messages.

Sponsored-by: On-Waves ehf
This commit is contained in:
Jacob Erlbeck 2016-02-01 10:08:00 +01:00
parent 5ffbb2744f
commit 38f18698b3
2 changed files with 4 additions and 4 deletions

View File

@ -171,7 +171,7 @@ static void test_coding_scheme()
printf("=== end %s ===\n", __func__);
}
static void test_rlc_decoder()
static void test_rlc_unit_decoder()
{
struct gprs_rlc_ul_data_block_info rdbi = {0};
GprsCodingScheme cs;
@ -524,7 +524,7 @@ int main(int argc, char **argv)
pcu_vty_init(&debug_log_info);
test_coding_scheme();
test_rlc_decoder();
test_rlc_unit_decoder();
if (getenv("TALLOC_REPORT_FULL"))
talloc_report_full(tall_pcu_ctx, stderr);

View File

@ -1,4 +1,4 @@
=== start test_coding_scheme ===
=== end test_coding_scheme ===
=== start test_rlc_decoder ===
=== end test_rlc_decoder ===
=== start test_rlc_unit_decoder ===
=== end test_rlc_unit_decoder ===