libvirt/tests/virmockdbus.c
Eric Blake fa8701ea2b tests: avoid dlsym mocking on mingw
I got a build failure when cross-compiling to mingw with the
mingw64-dbus package installed:

  CC       virmockdbus_la-virmockdbus.lo
../../tests/virmockdbus.c:29:6: error: 'dbus_connection_set_change_sigpipe' redeclared without dllimport attribute: previous dllimport ignored [-Werror=attributes]
 VIR_MOCK_STUB_VOID_ARGS(dbus_connection_set_change_sigpipe,
      ^
../../tests/virmockdbus.c:33:18: error: 'dbus_bus_get' redeclared without dllimport attribute: previous dllimport ignored [-Werror=attributes]
 VIR_MOCK_STUB_RET_ARGS(dbus_bus_get,
...

Well duh - mingw lacks dlopen and friends, even if it can support
dbus.  A similar failure occured in virsystemdtest.c; but in that
file, we know that systemd is a Linux-only concept.

* tests/virmockdbus.c: Cripple on mingw.
* tests/virsystemdtest.c: Cripple on non-Linux.

Signed-off-by: Eric Blake <eblake@redhat.com>
2014-05-20 15:16:22 -06:00

65 lines
2.3 KiB
C

/*
* virmockdbus.c: mocking of dbus message send/reply
*
* Copyright (C) 2013-2014 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*
* Author: Daniel P. Berrange <berrange@redhat.com>
*/
#include <config.h>
#if defined(WITH_DBUS) && !defined(WIN32)
# include "virmock.h"
# include <dbus/dbus.h>
VIR_MOCK_STUB_VOID_ARGS(dbus_connection_set_change_sigpipe,
dbus_bool_t, will_modify_sigpipe)
VIR_MOCK_STUB_RET_ARGS(dbus_bus_get,
DBusConnection *, (DBusConnection *)0x1,
DBusBusType, type,
DBusError *, error)
VIR_MOCK_STUB_VOID_ARGS(dbus_connection_set_exit_on_disconnect,
DBusConnection *, connection,
dbus_bool_t, exit_on_disconnect)
VIR_MOCK_STUB_RET_ARGS(dbus_connection_set_watch_functions,
dbus_bool_t, 1,
DBusConnection *, connection,
DBusAddWatchFunction, add_function,
DBusRemoveWatchFunction, remove_function,
DBusWatchToggledFunction, toggled_function,
void *, data,
DBusFreeFunction, free_data_function)
VIR_MOCK_STUB_RET_ARGS(dbus_message_set_reply_serial,
dbus_bool_t, 1,
DBusMessage *, message,
dbus_uint32_t, serial)
VIR_MOCK_LINK_RET_ARGS(dbus_connection_send_with_reply_and_block,
DBusMessage *,
DBusConnection *, connection,
DBusMessage *, message,
int, timeout_milliseconds,
DBusError *, error)
#endif /* WITH_DBUS && !WIN32 */