mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-10-31 13:10:52 +00:00 
			
		
		
		
	 83fe60fa1b
			
		
	
	
		83fe60fa1b
		
	
	
	
	
		
			
			Clear the error message on git_libgit2_shutdown for all versions of the library (no threads and Win32 threads). Drop the giterr_clear in clar, as that shouldn't be necessary.
		
			
				
	
	
		
			28 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			438 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "clar_libgit2.h"
 | |
| #include "clar_libgit2_trace.h"
 | |
| 
 | |
| #ifdef _WIN32
 | |
| int __cdecl main(int argc, char *argv[])
 | |
| #else
 | |
| int main(int argc, char *argv[])
 | |
| #endif
 | |
| {
 | |
| 	int res;
 | |
| 
 | |
| 	clar_test_init(argc, argv);
 | |
| 
 | |
| 	git_libgit2_init();
 | |
| 	cl_global_trace_register();
 | |
| 	cl_sandbox_set_search_path_defaults();
 | |
| 
 | |
| 	/* Run the test suite */
 | |
| 	res = clar_test_run();
 | |
| 
 | |
| 	clar_test_shutdown();
 | |
| 
 | |
| 	cl_global_trace_disable();
 | |
| 	git_libgit2_shutdown();
 | |
| 
 | |
| 	return res;
 | |
| }
 |