mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-23 00:43:00 -05:00
17 lines
305 B
C
17 lines
305 B
C
#include <tlib/testsuite.h>
|
|
|
|
int WinFspDiskTests = 1;
|
|
int WinFspNetTests = 1;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
TESTSUITE(path_tests);
|
|
TESTSUITE(mount_tests);
|
|
TESTSUITE(timeout_tests);
|
|
TESTSUITE(memfs_tests);
|
|
TESTSUITE(create_tests);
|
|
|
|
tlib_run_tests(argc, argv);
|
|
return 0;
|
|
}
|