aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fsm
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2019-12-01 13:38:20 +0100
committerHarald Welte <laforge@osmocom.org>2019-12-01 13:45:03 +0100
commitae5016f1938dfb87817cc6d9ceb84cb361e4b17e (patch)
tree31a21e33d08f9e48d28855fa86e7dd1489fbe60c /tests/fsm
parent7a35b78648a3a0761cbb0263b2d75bb5a6f2a3a2 (diff)
Check for osmo_fsm_register() error return value
Diffstat (limited to 'tests/fsm')
-rw-r--r--tests/fsm/fsm_dealloc_test.c2
-rw-r--r--tests/fsm/fsm_test.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/fsm/fsm_dealloc_test.c b/tests/fsm/fsm_dealloc_test.c
index 9a6974d9..48f80e57 100644
--- a/tests/fsm/fsm_dealloc_test.c
+++ b/tests/fsm/fsm_dealloc_test.c
@@ -452,7 +452,7 @@ int main(void)
log_set_category_filter(osmo_stderr_target, DLGLOBAL, 1, LOGL_DEBUG);
- osmo_fsm_register(&test_fsm);
+ OSMO_ASSERT(osmo_fsm_register(&test_fsm) == 0);
test_osmo_fsm_term_safely();
test_osmo_fsm_set_dealloc_ctx();
diff --git a/tests/fsm/fsm_test.c b/tests/fsm/fsm_test.c
index f8ebdc7b..911aad8c 100644
--- a/tests/fsm/fsm_test.c
+++ b/tests/fsm/fsm_test.c
@@ -417,7 +417,7 @@ int main(int argc, char **argv)
g_ctx = NULL;
OSMO_ASSERT(osmo_fsm_find_by_name(fsm.name) == NULL);
- osmo_fsm_register(&fsm);
+ OSMO_ASSERT(osmo_fsm_register(&fsm) == 0);
OSMO_ASSERT(osmo_fsm_find_by_name(fsm.name) == &fsm);
OSMO_ASSERT(osmo_fsm_inst_find_by_name(&fsm, "my_id") == NULL);