mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
ed9b267c0a
These aren't needed for any automated tests, but it's still nice to have them in the OS for manual testing.
31 lines
664 B
CMake
31 lines
664 B
CMake
set(TEST_SOURCES
|
|
BenchmarkPDF.cpp
|
|
TestPDF.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibPDF LIBS LibCore LibGfx LibPDF)
|
|
endforeach()
|
|
|
|
set(TEST_FILES
|
|
colorspaces.pdf
|
|
complex.pdf
|
|
encoding.pdf
|
|
encryption_nocopy.pdf
|
|
jbig2-globals.pdf
|
|
linearized.pdf
|
|
non-linearized.pdf
|
|
offset.pdf
|
|
oss-fuzz-testcase-62065.pdf
|
|
password-is-sup.pdf
|
|
paths.pdf
|
|
pattern.pdf
|
|
rotate.pdf
|
|
standard-14-fonts.pdf
|
|
text.pdf
|
|
type1.pdf
|
|
type3.pdf
|
|
wide-gamut-only.pdf
|
|
)
|
|
install(FILES ${TEST_FILES} DESTINATION home/anon/Documents/pdf)
|
|
install(FILES ${TEST_FILES} DESTINATION usr/Tests/LibPDF)
|