From: Ralf Habacker Date: Thu, 10 Jan 2019 14:29:59 +0000 (+0100) Subject: Make sure ctest on Windows uses the currently built dbus library X-Git-Tag: dbus-1.13.10~26^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f9eb9cea8c2329248bdf98418704b4e2ca450bb;p=thirdparty%2Fdbus.git Make sure ctest on Windows uses the currently built dbus library The ctest application is usually not installed in the dbus build directory. If an older dbus library is contained in this path, it will be used instead of the currently built one, which can lead to runtime errors (e.g.: c0000139) if the internal dbus API differs. --- diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 93402e0b9..429205b30 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -484,6 +484,12 @@ add_definitions(${DBUS_BUS_CFLAGS}) if (DBUS_BUILD_TESTS) # set variables used for the .in files (substituted by configure_file) in test/data: set(DBUS_TEST_EXEC ${Z_DRIVE_IF_WINE}${CMAKE_RUNTIME_OUTPUT_DIRECTORY}${IDE_BIN}) + # Working directory for build-time tests, so that they'll pick up + # the correct libdbus-1-3.dll on Windows. + # This happens to be the same as DBUS_TEST_EXEC, but its meaning is + # different, and it has no direct Autotools equivalent (Autotools + # tests automatically get their own ${builddir} as working directory). + set(DBUS_TEST_WORKING_DIR ${Z_DRIVE_IF_WINE}${CMAKE_RUNTIME_OUTPUT_DIRECTORY}${IDE_BIN}) set(DBUS_TEST_DATA ${Z_DRIVE_IF_WINE}${CMAKE_BINARY_DIR}/test/data) set(DBUS_TEST_DAEMON ${Z_DRIVE_IF_WINE}${CMAKE_RUNTIME_OUTPUT_DIRECTORY}${IDE_BIN}/dbus-daemon${EXEEXT}) set(DBUS_TEST_DBUS_LAUNCH ${Z_DRIVE_IF_WINE}${CMAKE_RUNTIME_OUTPUT_DIRECTORY}${IDE_BIN}/dbus-launch${EXEEXT}) diff --git a/cmake/modules/Macros.cmake b/cmake/modules/Macros.cmake index 4e635057c..3b93eb992 100644 --- a/cmake/modules/Macros.cmake +++ b/cmake/modules/Macros.cmake @@ -54,7 +54,11 @@ macro(add_test_executable _target _source) add_test(NAME ${_target} COMMAND ${TEST_WRAPPER} ${Z_DRIVE_IF_WINE}$ --tap) endif() else() - add_test(NAME ${_target} COMMAND $ --tap) + add_test( + NAME ${_target} + COMMAND $ --tap + WORKING_DIRECTORY ${DBUS_TEST_WORKING_DIR} + ) endif() set(_env) list(APPEND _env "DBUS_SESSION_BUS_ADDRESS=") @@ -94,6 +98,7 @@ macro(add_session_test_executable _target _source) --dbus-daemon=${DBUS_TEST_DAEMON} ${Z_DRIVE_IF_WINE}$ --tap + WORKING_DIRECTORY ${DBUS_TEST_WORKING_DIR} ) set(_env) list(APPEND _env "DBUS_SESSION_BUS_PID=")