mirror of
				https://github.com/python/cpython.git
				synced 2025-11-02 22:51:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			546 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import unittest
 | 
						|
from test import support
 | 
						|
from test.support import import_helper
 | 
						|
from test.support import check_sanitizer
 | 
						|
 | 
						|
if check_sanitizer(address=True, memory=True):
 | 
						|
    raise unittest.SkipTest("Tests involvin libX11 can SEGFAULT on ASAN/MSAN builds")
 | 
						|
 | 
						|
# Skip test if _tkinter wasn't built.
 | 
						|
import_helper.import_module('_tkinter')
 | 
						|
 | 
						|
# Skip test if tk cannot be initialized.
 | 
						|
support.requires('gui')
 | 
						|
 | 
						|
def load_tests(loader, tests, pattern):
 | 
						|
    return loader.discover('tkinter.test.test_tkinter')
 | 
						|
 | 
						|
 | 
						|
if __name__ == '__main__':
 | 
						|
    unittest.main()
 |