summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/logging/logging_test.c4
-rw-r--r--tests/logging/logging_test.err1
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/logging/logging_test.c b/tests/logging/logging_test.c
index 3cc6c5b2..5ef214d8 100644
--- a/tests/logging/logging_test.c
+++ b/tests/logging/logging_test.c
@@ -113,9 +113,13 @@ int main(int argc, char **argv)
/* Make sure out-of-bounds category maps to DLGLOBAL */
log_parse_category_mask(stderr_target, "DLGLOBAL,1");
+ /* For IDs out of bounds of the overall osmo_log_info array */
DEBUGP(osmo_log_info->num_cat + 1, "You should see this on DLGLOBAL (a)\n");
DEBUGP(osmo_log_info->num_cat + 100, "You should see this on DLGLOBAL (b)\n");
DEBUGP(osmo_log_info->num_cat, "You should see this on DLGLOBAL (c)\n");
+ /* For IDs out of bounds of the user categories part */
+ DEBUGP(log_info.num_cat + 1, "You should see this on DLGLOBAL (d)\n");
+ DEBUGP(log_info.num_cat, "You should see this on DLGLOBAL (e)\n");
return 0;
}
diff --git a/tests/logging/logging_test.err b/tests/logging/logging_test.err
index 273a852b..f4e9c1f4 100644
--- a/tests/logging/logging_test.err
+++ b/tests/logging/logging_test.err
@@ -4,3 +4,4 @@ DRLL You should see this
DLGLOBAL You should see this on DLGLOBAL (a)
DLGLOBAL You should see this on DLGLOBAL (b)
DLGLOBAL You should see this on DLGLOBAL (c)
+DLGLOBAL You should see this on DLGLOBAL (e)