add winfsp-tests and ext/tlib

This commit is contained in:
Bill Zissimopoulos
2015-11-30 13:48:19 -08:00
parent a71ca19644
commit abdc76ea2e
21 changed files with 971 additions and 14 deletions

View File

@ -0,0 +1,11 @@
#include <winfsp/winfsp.h>
#include <tlib/testsuite.h>
void mount_test(void)
{
}
void mount_tests(void)
{
TEST(mount_test);
}

View File

@ -0,0 +1,8 @@
#include <tlib/testsuite.h>
int main(int argc, char *argv[])
{
TESTSUITE(mount_tests);
tlib_run_tests(argc, argv);
return 0;
}