diff -r 864e2d701dd4 -r a171da778817 src/server/test/main.c --- a/src/server/test/main.c Fri Feb 04 18:41:40 2022 +0100 +++ b/src/server/test/main.c Sat Feb 19 16:34:29 2022 +0100 @@ -46,6 +46,9 @@ #include "xml.h" #include "webdav.h" +void register_pg_tests(int argc, char **argv, UcxTestSuite *suite); + + void test() { } @@ -105,6 +108,11 @@ ucx_test_register(suite, test_webdav_propfind); ucx_test_register(suite, test_webdav_proppatch); ucx_test_register(suite, test_webdav_put); + + // plugin tests +#ifdef ENABLE_POSTGRESQL + register_pg_tests(argc, argv, suite); +#endif // run tests ucx_test_run(suite, stdout);