mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-31 16:07:30 +03:00 
			
		
		
		
	modify leak test
This commit is contained in:
		
							parent
							
								
									f4036728ca
								
							
						
					
					
						commit
						f6086d40cc
					
				|  | @ -6,18 +6,16 @@ from PIL import Image | ||||||
| 
 | 
 | ||||||
| from .helper import PillowLeakTestCase, skip_unless_feature | from .helper import PillowLeakTestCase, skip_unless_feature | ||||||
| 
 | 
 | ||||||
| test_file = "Tests/images/hopper.jxl" | TEST_FILE = "Tests/images/hopper.jxl" | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| @skip_unless_feature("jxl") | @skip_unless_feature("jxl") | ||||||
| class TestJxlLeaks(PillowLeakTestCase): | class TestJxlLeaks(PillowLeakTestCase): | ||||||
|     # TODO: lower the limit, I'm not sure what is correct limit |     mem_limit = 6 * 1024  # kb | ||||||
|     # since I have libjxl debug system-wide |     iterations = 1000 | ||||||
|     mem_limit = 16 * 1024  # kb |  | ||||||
|     iterations = 100 |  | ||||||
| 
 | 
 | ||||||
|     def test_leak_load(self) -> None: |     def test_leak_load(self) -> None: | ||||||
|         with open(test_file, "rb") as f: |         with open(TEST_FILE, "rb") as f: | ||||||
|             im_data = f.read() |             im_data = f.read() | ||||||
| 
 | 
 | ||||||
|         def core() -> None: |         def core() -> None: | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user