mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Test: Fixed annoying warnings (and possible obscure bugs).
This commit is contained in:
parent
8bdb05edb2
commit
0a793ebc60
@ -35,7 +35,7 @@ parse_config_file(const void *argv)
|
||||
const struct parse_config_file_arg *arg = argv;
|
||||
size_t fn_size = strlen(arg->filename) + 1;
|
||||
char *filename = alloca(fn_size);
|
||||
strncpy(filename, arg->filename, fn_size);
|
||||
memcpy(filename, arg->filename, fn_size);
|
||||
|
||||
*(arg->cp) = bt_config_file_parse(filename);
|
||||
return !!*(arg->cp);
|
||||
|
@ -155,10 +155,7 @@ int bt_run_test_fn(int (*fn)(const void *), const void *fn_arg, int timeout)
|
||||
int result;
|
||||
alarm(timeout);
|
||||
|
||||
if (fn_arg)
|
||||
result = fn(fn_arg);
|
||||
else
|
||||
result = ((int (*)(void))fn)();
|
||||
result = fn(fn_arg);
|
||||
|
||||
if (!bt_suite_result)
|
||||
result = 0;
|
||||
|
@ -54,11 +54,13 @@ void bt_log_suite_case_result(int result, const char *fmt, ...);
|
||||
#define BT_PROMPT_FAIL_NO_COLOR " [" "FAIL" "] "
|
||||
#define BT_PROMPT_OK_FAIL_STRLEN 8 /* strlen ' [FAIL] ' */
|
||||
|
||||
static inline int bt_test_fn_noarg(const void *cp) { return ((int (*)(void)) cp)(); }
|
||||
|
||||
#define bt_test_suite(fn, dsc, ...) \
|
||||
bt_test_suite_extra(fn, BT_FORKING, BT_TIMEOUT, dsc, ##__VA_ARGS__)
|
||||
|
||||
#define bt_test_suite_extra(fn, f, t, dsc, ...) \
|
||||
bt_test_suite_base((int (*)(const void *))fn, #fn, NULL, f, t, dsc, ##__VA_ARGS__)
|
||||
bt_test_suite_base(bt_test_fn_noarg, #fn, fn, f, t, dsc, ##__VA_ARGS__)
|
||||
|
||||
#define bt_test_suite_arg(fn, arg, dsc, ...) \
|
||||
bt_test_suite_arg_extra(fn, arg, BT_FORKING, BT_TIMEOUT, dsc, ##__VA_ARGS__)
|
||||
|
Loading…
Reference in New Issue
Block a user