mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 10:45:07 +00:00

Move the long storage test from TestSqlStatementExecution into a new test unit called TestSqlHeap. Split it up into a flushed and non-flushed variant so we test the write-ahead log as well.
14 lines
349 B
CMake
14 lines
349 B
CMake
set(TEST_SOURCES
|
|
TestSqlBtreeIndex.cpp
|
|
TestSqlDatabase.cpp
|
|
TestSqlExpressionParser.cpp
|
|
TestSqlHashIndex.cpp
|
|
TestSqlHeap.cpp
|
|
TestSqlStatementExecution.cpp
|
|
TestSqlStatementParser.cpp
|
|
TestSqlValueAndTuple.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibSQL LIBS LibSQL LibIPC)
|
|
endforeach()
|