/
githubmirror
/
libeconf
Обзор
Документация
Войти
/
githubmirror
/
libeconf
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/tst-merge3.c
50 строк
1 KB
Stefan Schubert
Removed PATH_MAX (#226)
09 дек 2024, 18:49
Не верифицирован
09 дек 2024, 18:49
3f83557
Код
Авторство
О чём код?
#ifdef HAVE_CONFIG_H # include <config.h> #endif #include <stdio.h> #include "libeconf.h" /* Test case: * Try to open two files, where one only contains comments * Call econf_mergeFiles with this. * Application should not crash. */ int main(void) { econf_file *key_file_1 = NULL, *key_file_2 = NULL, *key_file_m = NULL; econf_err error; error = econf_readFile (&key_file_1, TESTSDIR"tst-merge3-data/etc/login.defs", " \t=", "#"); if (error || key_file_1 == NULL) { fprintf (stderr, "ERROR: couldn't read /etc/login.defs: %s\n", econf_errString(error)); return 1; } error = econf_readFile (&key_file_2, TESTSDIR"tst-merge3-data/etc/default/su", " \t=", "#"); if (error || key_file_2 == NULL) { fprintf (stderr, "ERROR: coudln't read /etc/default/su: %s\n", econf_errString(error)); return 1; } error = econf_mergeFiles (&key_file_m, key_file_2, key_file_1); if (error || key_file_m == NULL) { fprintf (stderr, "ERROR: error merging configuration files: %s\n", econf_errString(error)); return 1; } if (key_file_1) econf_free (key_file_1); if (key_file_2) econf_free (key_file_2); if (key_file_m) econf_free (key_file_m); return 0; }