mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-30 19:48:38 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			493 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			493 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(flush_tests);
 | |
|     TESTSUITE(lock_tests);
 | |
|     TESTSUITE(dirctl_tests);
 | |
| 
 | |
|     tlib_run_tests(argc, argv);
 | |
|     return 0;
 | |
| }
 |