mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2025-01-03 14:56:35 -05:00
Rename config file (re)load function for clarity
This commit is contained in:
parent
8344c458de
commit
cce2455bc6
@ -157,7 +157,7 @@ cfg_clear(void)
|
||||
}
|
||||
|
||||
int
|
||||
cfg_reload(void)
|
||||
cfg_file_reload(void)
|
||||
{
|
||||
cfg_save();
|
||||
if (0 > _cfg_load()) {
|
||||
|
@ -79,7 +79,7 @@ void cfg_clear(void);
|
||||
|
||||
int cfg_check(const char **);
|
||||
|
||||
int cfg_reload(void);
|
||||
int cfg_file_reload(void);
|
||||
|
||||
int cfg_stream_str2fmt(const char *, enum cfg_stream_format *);
|
||||
const char *
|
||||
|
@ -780,7 +780,7 @@ main(int argc, char *argv[])
|
||||
0 > cfg_decoder_init() ||
|
||||
0 > cfg_encoder_init() ||
|
||||
0 > playlist_init() ||
|
||||
0 > cfg_reload() ||
|
||||
0 > cfg_file_reload() ||
|
||||
0 > stream_init())
|
||||
return (ez_shutdown(ret));
|
||||
|
||||
|
@ -11,29 +11,29 @@ START_TEST(test_reload)
|
||||
{
|
||||
ck_assert_int_eq(cfg_set_program_config_file(EXAMPLESDIR "/ezstream-file_template.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), 0);
|
||||
ck_assert_int_eq(cfg_file_reload(), 0);
|
||||
ck_assert_int_eq(cfg_set_program_config_file(EXAMPLESDIR "/ezstream-full.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), 0);
|
||||
ck_assert_int_eq(cfg_file_reload(), 0);
|
||||
ck_assert_int_eq(cfg_set_program_config_file(EXAMPLESDIR "/ezstream-minimal.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), 0);
|
||||
ck_assert_int_eq(cfg_file_reload(), 0);
|
||||
ck_assert_int_eq(cfg_set_program_config_file(EXAMPLESDIR "/ezstream-video.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), 0);
|
||||
ck_assert_int_eq(cfg_reload(), 0);
|
||||
ck_assert_int_eq(cfg_file_reload(), 0);
|
||||
ck_assert_int_eq(cfg_file_reload(), 0);
|
||||
ck_assert_int_eq(cfg_set_program_config_file(SRCDIR "/config-bad.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), -1);
|
||||
ck_assert_int_eq(cfg_file_reload(), -1);
|
||||
ck_assert_int_eq(cfg_set_program_config_file(SRCDIR "/config-bad2.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), -1);
|
||||
ck_assert_int_eq(cfg_file_reload(), -1);
|
||||
ck_assert_int_eq(cfg_set_program_config_file(SRCDIR "/config-bad3.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), -1);
|
||||
ck_assert_int_eq(cfg_file_reload(), -1);
|
||||
ck_assert_int_eq(cfg_set_program_config_file(SRCDIR "/config-bad4.xml",
|
||||
NULL), 0);
|
||||
ck_assert_int_eq(cfg_reload(), -1);
|
||||
ck_assert_int_eq(cfg_file_reload(), -1);
|
||||
}
|
||||
END_TEST
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user