Include test-dbus and test-bus in cmake 'make check' target.

Because test-dbus and test-bus lives in subdirectory dbus/bus, we need
to define make 'check' in top level source directory.

Bug: https://bugs.freedesktop.org/show_bug.cgi?id=73689
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
Ralf Habacker 2014-01-14 18:59:18 +01:00
parent 3d363220ad
commit 8ad6a5575f
2 changed files with 3 additions and 4 deletions

View file

@ -496,6 +496,9 @@ add_subdirectory( dbus )
add_subdirectory( bus )
if (DBUS_BUILD_TESTS)
add_subdirectory( test )
add_custom_target(check
COMMAND ctest -R ^test-.*
)
endif (DBUS_BUILD_TESTS)
add_subdirectory( tools )
add_subdirectory( doc )

View file

@ -172,7 +172,3 @@ FOREACH(FILE ${FILES})
MESSAGE("FROM: ${FILE}\nTO: ${TARGET}\n")
ENDIF (CONFIG_VERBOSE)
ENDFOREACH(FILE)
add_custom_target(check
COMMAND ctest -R ^test-.*
)