mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09: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()
|