/
niceSOFT
/
dovecot
Обзор
Документация
Войти
/
niceSOFT
/
dovecot
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/test-lib.c
32 строки
690 B
Michael M Slusarz
COPYING: Simplify and standardize copyright handling
03 июл 2026, 02:25
03 июл 2026, 02:25
2a5809c
Код
Авторство
О чём код?
/* Copyright (c) Dovecot authors, see top-level COPYING file */ #include "test-lib.h" int main(int argc, char **argv) { const char *match = ""; if (argc > 2 && strcmp(argv[1], "--match") == 0) match = argv[2]; static const struct named_test test_functions[] = { #define TEST(x) TEST_NAMED(x) #define FATAL(x) #include "test-lib.inc" #undef TEST #undef FATAL { NULL, NULL } }; static const struct named_fatal fatal_functions[] = { #define TEST(x) #define FATAL(x) FATAL_NAMED(x) #include "test-lib.inc" #undef TEST #undef FATAL { NULL, NULL } }; test_dir_init("lib"); test_subprocesses_init(); return test_run_named_with_fatals(match, test_functions, fatal_functions); }