mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-30 07:34:27 +08:00
139159cfd1
glib 2.39.0 made this change: - g_source_remove() will now throw a critical in the case that you try to remove a non-existent source. We expect that there is some code in the wild that will fall afoul of this new critical but considering that we now reuse source IDs, this code is already broken and should probably be fixed. This patch fixes the test suite to keep better track of whether sources have already been removed and avoid double-removals.
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
/*
|
|
*
|
|
* OBEX library with GLib integration
|
|
*
|
|
* Copyright (C) 2011 Intel Corporation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#include <gobex/gobex.h>
|
|
|
|
enum {
|
|
TEST_ERROR_TIMEOUT,
|
|
TEST_ERROR_UNEXPECTED,
|
|
};
|
|
|
|
struct test_buf {
|
|
const void *data;
|
|
gssize len;
|
|
};
|
|
|
|
struct test_data {
|
|
guint count;
|
|
GError *err;
|
|
struct test_buf recv[4];
|
|
struct test_buf send[4];
|
|
guint provide_delay;
|
|
GObex *obex;
|
|
guint id;
|
|
gsize total;
|
|
GMainLoop *mainloop;
|
|
gboolean io_completed;
|
|
};
|
|
|
|
#define TEST_ERROR test_error_quark()
|
|
GQuark test_error_quark(void);
|
|
|
|
void dump_bufs(const void *mem1, size_t len1, const void *mem2, size_t len2);
|
|
void assert_memequal(const void *mem1, size_t len1,
|
|
const void *mem2, size_t len2);
|
|
|
|
GObex *create_gobex(int fd, GObexTransportType transport_type,
|
|
gboolean close_on_unref);
|
|
void create_endpoints(GObex **obex, GIOChannel **io, int sock_type);
|
|
|
|
gboolean test_io_cb(GIOChannel *io, GIOCondition cond, gpointer user_data);
|
|
gboolean test_timeout(gpointer user_data);
|