2016-04-08 06:49:42 +00:00
|
|
|
add_definitions(-DKWINBACKENDPATH="${CMAKE_BINARY_DIR}/plugins/platforms/virtual/KWinWaylandVirtualBackend.so")
|
2015-10-02 13:04:57 +00:00
|
|
|
add_definitions(-DKWINQPAPATH="${CMAKE_BINARY_DIR}/plugins/qpa/")
|
|
|
|
########################################################
|
|
|
|
# Test Start
|
|
|
|
########################################################
|
|
|
|
set( testStart_SRCS start_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testStart ${testStart_SRCS})
|
|
|
|
target_link_libraries( testStart kwin Qt5::Test)
|
|
|
|
add_test(kwin-testStart testStart)
|
|
|
|
ecm_mark_as_test(testStart)
|
2015-10-07 17:06:34 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Transient Window without input test
|
|
|
|
########################################################
|
|
|
|
set( testTransientNoInput_SRCS transient_no_input_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testTransientNoInput ${testTransientNoInput_SRCS})
|
|
|
|
target_link_libraries( testTransientNoInput kwin Qt5::Test)
|
|
|
|
add_test(kwin-testTransientNoInput testTransientNoInput)
|
|
|
|
ecm_mark_as_test(testTransientNoInput)
|
2015-10-14 07:58:16 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Quick Tiling test
|
|
|
|
########################################################
|
|
|
|
set( testQuickTiling_SRCS quick_tiling_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testQuickTiling ${testQuickTiling_SRCS})
|
|
|
|
target_link_libraries( testQuickTiling kwin Qt5::Test)
|
|
|
|
add_test(kwin-testQuickTiling testQuickTiling)
|
|
|
|
ecm_mark_as_test(testQuickTiling)
|
2015-10-22 08:08:49 +00:00
|
|
|
|
2015-10-26 08:17:46 +00:00
|
|
|
########################################################
|
|
|
|
# Move/Resize window test
|
|
|
|
########################################################
|
|
|
|
set( testMoveResize_SRCS move_resize_window_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testMoveResize ${testMoveResize_SRCS})
|
2016-04-15 14:07:39 +00:00
|
|
|
target_link_libraries( testMoveResize kwin Qt5::Test XCB::ICCCM)
|
2015-10-26 08:17:46 +00:00
|
|
|
add_test(kwin-testMoveResize testMoveResize)
|
|
|
|
ecm_mark_as_test(testMoveResize)
|
|
|
|
|
2015-10-22 08:08:49 +00:00
|
|
|
########################################################
|
|
|
|
# Don't Crash For glxgears
|
|
|
|
########################################################
|
|
|
|
set( testDontCrashGlxgears_SRCS dont_crash_glxgears.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testDontCrashGlxgears ${testDontCrashGlxgears_SRCS})
|
|
|
|
target_link_libraries( testDontCrashGlxgears kwin Qt5::Test)
|
|
|
|
add_test(kwin-testDontCrashGlxgears testDontCrashGlxgears)
|
|
|
|
ecm_mark_as_test(testDontCrashGlxgears)
|
2016-02-01 14:10:00 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Lock screen integration test
|
|
|
|
########################################################
|
|
|
|
set( testLockScreen_SRCS lockscreen.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testLockScreen ${testLockScreen_SRCS})
|
|
|
|
target_link_libraries( testLockScreen kwin Qt5::Test)
|
|
|
|
add_test(kwin-testLockScreen testLockScreen)
|
|
|
|
ecm_mark_as_test(testLockScreen)
|
2016-02-04 10:18:45 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Decoration input test
|
|
|
|
########################################################
|
|
|
|
set( testDecorationInput_SRCS decoration_input_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testDecorationInput ${testDecorationInput_SRCS})
|
|
|
|
target_link_libraries( testDecorationInput kwin Qt5::Test)
|
|
|
|
add_test(kwin-testDecorationInput testDecorationInput)
|
|
|
|
ecm_mark_as_test(testDecorationInput)
|
2016-02-05 14:39:04 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Internal Window test
|
|
|
|
########################################################
|
|
|
|
set( testInternalWindow_SRCS internal_window.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testInternalWindow ${testInternalWindow_SRCS})
|
|
|
|
target_link_libraries( testInternalWindow kwin Qt5::Test)
|
|
|
|
add_test(kwin-testInternalWindow testInternalWindow)
|
|
|
|
ecm_mark_as_test(testInternalWindow)
|
2016-02-09 10:35:15 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Touch Input Test
|
|
|
|
########################################################
|
|
|
|
set( testTouchInput_SRCS touch_input_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testTouchInput ${testTouchInput_SRCS})
|
|
|
|
target_link_libraries( testTouchInput kwin Qt5::Test)
|
|
|
|
add_test(kwin-testTouchInput testTouchInput)
|
|
|
|
ecm_mark_as_test(testTouchInput)
|
2016-02-11 09:47:21 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Input Stacking Order Test
|
|
|
|
########################################################
|
|
|
|
set( testInputStackingOrder_SRCS input_stacking_order.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testInputStackingOrder ${testInputStackingOrder_SRCS})
|
|
|
|
target_link_libraries( testInputStackingOrder kwin Qt5::Test)
|
|
|
|
add_test(kwin-testInputStackingOrder testInputStackingOrder)
|
|
|
|
ecm_mark_as_test(testInputStackingOrder)
|
2016-02-11 11:48:42 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Pointer Input Test
|
|
|
|
########################################################
|
|
|
|
set( testPointerInput_SRCS pointer_input.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testPointerInput ${testPointerInput_SRCS})
|
|
|
|
target_link_libraries( testPointerInput kwin Qt5::Test)
|
|
|
|
add_test(kwin-testPointerInput testPointerInput)
|
|
|
|
ecm_mark_as_test(testPointerInput)
|
2016-02-17 11:42:12 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# PlatformCursorTest
|
|
|
|
########################################################
|
|
|
|
set( testPlatformCursor_SRCS platformcursor.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testPlatformCursor ${testPlatformCursor_SRCS})
|
|
|
|
target_link_libraries( testPlatformCursor kwin Qt5::Test)
|
|
|
|
add_test(kwin-testPlatformCursor testPlatformCursor)
|
|
|
|
ecm_mark_as_test(testPlatformCursor)
|
2016-02-02 17:25:36 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Don't crash cancel animation test
|
|
|
|
########################################################
|
|
|
|
set( testDontCrashCancelAnimation_SRCS dont_crash_cancel_animation.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testDontCrashCancelAnimation ${testDontCrashCancelAnimation_SRCS})
|
|
|
|
target_link_libraries( testDontCrashCancelAnimation kwin Qt5::Test)
|
|
|
|
add_test(kwin-testDontCrashCancelAnimation testDontCrashCancelAnimation)
|
|
|
|
ecm_mark_as_test(testDontCrashCancelAnimation)
|
2016-03-03 12:32:50 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Transient Placement Test
|
|
|
|
########################################################
|
|
|
|
set( testTransientPlacmenet_SRCS transient_placement.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testTransientPlacmenet ${testTransientPlacmenet_SRCS})
|
|
|
|
target_link_libraries( testTransientPlacmenet kwin Qt5::Test)
|
|
|
|
add_test(kwin-testTransientPlacmenet testTransientPlacmenet)
|
|
|
|
ecm_mark_as_test(testTransientPlacmenet)
|
2016-03-14 09:23:52 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Debug Console Test
|
|
|
|
########################################################
|
|
|
|
set( testDebugConsole_SRCS debug_console_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testDebugConsole ${testDebugConsole_SRCS})
|
|
|
|
target_link_libraries( testDebugConsole kwin Qt5::Test)
|
|
|
|
add_test(kwin-testDebugConsole testDebugConsole)
|
|
|
|
ecm_mark_as_test(testDebugConsole)
|
2016-04-11 15:24:08 +00:00
|
|
|
|
|
|
|
########################################################
|
|
|
|
# Struts Test
|
|
|
|
########################################################
|
|
|
|
set( testStruts_SRCS struts_test.cpp kwin_wayland_test.cpp )
|
|
|
|
add_executable(testStruts ${testStruts_SRCS})
|
|
|
|
target_link_libraries( testStruts kwin Qt5::Test XCB::ICCCM)
|
|
|
|
add_test(kwin-testStruts testStruts)
|
|
|
|
ecm_mark_as_test(testStruts)
|