| 
									
										
										
										
											2004-06-15 15:49:46 +00:00
										 |  |  | """Tests for distutils.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The tests for distutils are defined in the distutils.tests package; | 
					
						
							|  |  |  | the test_suite() function there returns a test suite that's ready to | 
					
						
							|  |  |  | be run. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import distutils.tests | 
					
						
							| 
									
										
										
										
											2008-05-20 21:35:26 +00:00
										 |  |  | import test.support | 
					
						
							| 
									
										
										
										
											2004-06-15 15:49:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def test_main(): | 
					
						
							| 
									
										
										
										
											2020-01-27 04:08:39 -08:00
										 |  |  |     # used by regrtest | 
					
						
							| 
									
										
										
										
											2008-05-20 21:35:26 +00:00
										 |  |  |     test.support.run_unittest(distutils.tests.test_suite()) | 
					
						
							| 
									
										
										
										
											2009-10-27 20:21:45 +00:00
										 |  |  |     test.support.reap_children() | 
					
						
							| 
									
										
										
										
											2004-06-15 15:49:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-27 04:08:39 -08:00
										 |  |  | def load_tests(*_): | 
					
						
							|  |  |  |     # used by unittest | 
					
						
							|  |  |  |     return distutils.tests.test_suite() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-15 15:49:46 +00:00
										 |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     test_main() |