diff -r 2ba512b284b9 -r dd6c155c082a src/server/test/main.c --- a/src/server/test/main.c Tue Dec 31 11:57:02 2019 +0100 +++ b/src/server/test/main.c Tue Dec 31 14:07:42 2019 +0100 @@ -41,6 +41,7 @@ #include +#include "vfs.h" #include "webdav.h" void test() { @@ -61,6 +62,12 @@ UcxTestSuite* suite = ucx_test_suite_new(); + // vfs tests + ucx_test_register(suite, test_vfs_open); + ucx_test_register(suite, test_vfs_mkdir); + ucx_test_register(suite, test_vfs_opendir); + ucx_test_register(suite, test_readdir); + // webdav tests ucx_test_register(suite, test_propfind_parse); ucx_test_register(suite, test_proppatch_parse);