mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:48:14 +00:00

TestCommonmark runs the CommonMark test suite (https://spec.commonmark.org/0.30/spec.json) against LibMarkdown. Currently 44/652 tests pass.
6 lines
222 B
CMake
6 lines
222 B
CMake
include(${SERENITY_PROJECT_ROOT}/Meta/CMake/commonmark_spec.cmake)
|
|
file(GLOB TEST_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
|
|
|
foreach(source ${TEST_SOURCES})
|
|
serenity_test(${source} LibMarkdown LIBS LibMarkdown)
|
|
endforeach()
|