mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:34:59 +00:00

This patch adds some rudimentary tests for InodeWatcher. It tests the basic functionality, but maybe there are corner cases I haven't caught. Additionally, this is our first LibCore test. :^)
8 lines
160 B
CMake
8 lines
160 B
CMake
set(
|
|
TEST_SOURCES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/TestLibCoreFileWatcher.cpp
|
|
)
|
|
|
|
foreach(source ${TEST_SOURCES})
|
|
serenity_test(${source} LibCore)
|
|
endforeach()
|