diff options
author | Maria Matejka <mq@ucw.cz> | 2022-09-14 14:45:21 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-09-19 12:58:19 +0200 |
commit | c179d4d644cfa835f53c2fc4aeb83728f5b3b76d (patch) | |
tree | d04fb255ea193135fe37b361ca274a799997566f | |
parent | f33793acf768646b63c42287de2e09e7f33d7b1f (diff) |
Switched off forking for filter test.
You don't want to fork with threads running.
-rw-r--r-- | filter/filter_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/filter_test.c b/filter/filter_test.c index 5b24a765..671dba94 100644 --- a/filter/filter_test.c +++ b/filter/filter_test.c @@ -79,11 +79,11 @@ main(int argc, char *argv[]) if (!bt_config_file_parse(BT_CONFIG_FILE)) abort(); - bt_test_suite(t_reconfig, "Testing reconfiguration"); + bt_test_suite_extra(t_reconfig, 0, BT_TIMEOUT, "Testing reconfiguration"); struct f_bt_test_suite *t; WALK_LIST(t, config->tests) - bt_test_suite_base(run_function, t->fn_name, t, BT_FORKING, BT_TIMEOUT, "%s", t->dsc); + bt_test_suite_base(run_function, t->fn_name, t, 0, BT_TIMEOUT, "%s", t->dsc); bt_bird_cleanup(); return bt_exit_value(); |