mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 16:55:09 +00:00

For each .cpp file in the test suite data, there is a .ast file that represents the "known good" baseline of the parser result. Each .cpp file goes through the parser, and the result of invoking `ASTNode::dump()` on the root node is compared to the baseline to find regressions. We also check that there were no parser errors when parsing the .cpp files.
15 lines
389 B
CMake
15 lines
389 B
CMake
add_subdirectory(AK)
|
|
add_subdirectory(Kernel)
|
|
add_subdirectory(LibC)
|
|
add_subdirectory(LibCompress)
|
|
add_subdirectory(LibCore)
|
|
add_subdirectory(LibCpp)
|
|
add_subdirectory(LibELF)
|
|
add_subdirectory(LibGfx)
|
|
add_subdirectory(LibJS)
|
|
add_subdirectory(LibM)
|
|
add_subdirectory(LibPthread)
|
|
add_subdirectory(LibRegex)
|
|
add_subdirectory(LibSQL)
|
|
add_subdirectory(LibWeb)
|
|
add_subdirectory(UserspaceEmulator)
|