Tests: Rename LibGfx painter benchmark to denote it's not a test.

This commit is contained in:
Brian Gianforcaro 2021-04-28 18:19:50 -07:00 committed by Andreas Kling
parent cf0640c870
commit d2b4ea69ab
Notes: sideshowbarker 2024-07-18 18:55:48 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
file(GLOB CMD_SOURCES CONFIGURE_DEPENDS "*.cpp")
list(REMOVE_ITEM CMD_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/painter.cpp)
list(REMOVE_ITEM CMD_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/BenchmarkGfxPainter.cpp)
# FIXME These tests do not use LibTest
foreach(CMD_SRC ${CMD_SOURCES})
@ -9,4 +9,4 @@ foreach(CMD_SRC ${CMD_SOURCES})
install(TARGETS ${CMD_NAME} RUNTIME DESTINATION usr/Tests/LibGfx)
endforeach()
serenity_test(painter.cpp LibGfx LIBS LibGUI)
serenity_test(BenchmarkGfxPainter.cpp LibGfx LIBS LibGUI)