1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 11:57:36 +00:00

Tests: Add some test coverage for the TTF parser

This is in Tests/LibTTF instead of Tests/LibGfx because Tests/LibGfx
depends on serenity's file system layout and can't run in lagom,
but this new test runs just fine in lagom.
This commit is contained in:
Nico Weber 2022-04-03 11:26:36 -04:00 committed by Andreas Kling
parent 9b24600779
commit fd82121319
3 changed files with 95 additions and 1 deletions

View file

@ -0,0 +1,7 @@
set(TEST_SOURCES
TestCmap.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibGfx)
endforeach()