1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 09:27:46 +00:00

Tests: Add a basic UTF-8 to UTF-8 LibTextCodec test

This commit is contained in:
Karol Kosek 2022-03-27 21:41:51 +02:00 committed by Andreas Kling
parent b006a60366
commit dcb24e943d
4 changed files with 40 additions and 0 deletions

View file

@ -596,6 +596,13 @@ if (BUILD_LAGOM)
lagom_test(${source} LIBS LagomSQL)
endforeach()
# TextCodec
file(GLOB LIBTEXTCODEC_TESTS CONFIGURE_DEPENDS "../../Tests/LibTextCodec/*.cpp")
foreach(source ${LIBTEXTCODEC_TESTS})
lagom_test(${source} LIBS LagomTextCodec
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/../../Tests/LibTextCodec)
endforeach()
# TLS
file(GLOB LIBTLS_TESTS CONFIGURE_DEPENDS "../../Tests/LibTLS/*.cpp")
foreach(source ${LIBTLS_TESTS})