1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-09 05:20:45 +00:00
serenity/Tests/Utilities/CMakeLists.txt
dgaston 82887473d2 Utilities: Allow uniq to work on lines of arbitrary length
Calls to `read_line` are replaced with `read_line_with_resize`
and `swap`s of StringViews, which assume a consistent location
of the underlying ByteBuffers, are replaced. A test file has
been added for uniq, which includes a test case for long lines.
2024-04-27 16:33:27 -06:00

10 lines
163 B
CMake

set(TEST_SOURCES
TestSed.cpp
TestPatch.cpp
TestUniq.cpp
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" Utilities)
endforeach()