mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-24 01:13:04 -05:00
22 lines
438 B
C
22 lines
438 B
C
#include <tlib/testsuite.h>
|
|
|
|
int NtfsTests = 0;
|
|
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);
|
|
TESTSUITE(info_tests);
|
|
TESTSUITE(security_tests);
|
|
TESTSUITE(rdwr_tests);
|
|
TESTSUITE(dirctl_tests);
|
|
|
|
tlib_run_tests(argc, argv);
|
|
return 0;
|
|
}
|