mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-23 17:03:12 -05:00
18 lines
324 B
C
18 lines
324 B
C
#include <tlib/testsuite.h>
|
|
|
|
int NtfsTests = 1;
|
|
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;
|
|
}
|