mirror of
				https://git.proxmox.com/git/libgit2
				synced 2025-11-04 04:38:58 +00:00 
			
		
		
		
	There are a number of tests that modify the global or system search paths during the tests. This adds a helper function to make it easier to restore those paths and makes sure that they are getting restored in a manner that preserves test isolation.
		
			
				
	
	
		
			26 lines
		
	
	
		
			366 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			366 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "clar_libgit2.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_threads_init();
 | 
						|
	cl_sandbox_set_search_path_defaults();
 | 
						|
 | 
						|
	/* Run the test suite */
 | 
						|
	res = clar_test_run();
 | 
						|
 | 
						|
	clar_test_shutdown();
 | 
						|
 | 
						|
	giterr_clear();
 | 
						|
	git_threads_shutdown();
 | 
						|
 | 
						|
	return res;
 | 
						|
}
 |