mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 b4296e1c9b
			
		
	
	
		b4296e1c9b
		
	
	
	
	
		
			
			Previously, constructing error messages with unsanitized input could fail because error message strings must be UTF-8.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| set(TEST_SOURCES
 | |
|     TestPDF.cpp
 | |
| )
 | |
| 
 | |
| foreach(source IN LISTS TEST_SOURCES)
 | |
|     serenity_test("${source}" LibPDF LIBS LibCore LibPDF)
 | |
| endforeach()
 | |
| 
 | |
| set(TEST_FILES
 | |
|     complex.pdf
 | |
|     encryption_nocopy.pdf
 | |
|     linearized.pdf
 | |
|     non-linearized.pdf
 | |
|     oss-fuzz-testcase-62065.pdf
 | |
|     password-is-sup.pdf
 | |
|     type1.pdf
 | |
| )
 | |
| install(FILES ${TEST_FILES} DESTINATION home/anon/Documents/pdf)
 | |
| install(FILES ${TEST_FILES} DESTINATION usr/Tests/LibPDF)
 |