mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 06:02:07 +03:00
b4296e1c9b
Previously, constructing error messages with unsanitized input could fail because error message strings must be UTF-8.
20 lines
440 B
CMake
20 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)
|