mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
ce6fbd6231
In particular, targets with weight 0 should be very UNlikely to be selected, not very likely, as they were before. However, even ignoring that bug in the logic, there was an additional bug (swapping list items would cause the 0-weight items to get re-ordered incorrectly anyway), and the code contained several fencepost errors. This patch also adds gio/tests/srvtarget.c, which confirms that for a sample list of targets, we now generate all possible correct random sortings and no incorrect sortings, and the correct sortings occur in roughly the expected proportions (though if the current code is still wrong, those proportions may be wrong as well). http://bugzilla.gnome.org/show_bug.cgi?id=583398
114 lines
2.9 KiB
Makefile
114 lines
2.9 KiB
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = \
|
|
-g \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/glib \
|
|
-I$(top_srcdir)/gmodule \
|
|
-I$(top_srcdir)/gobject \
|
|
-I$(top_srcdir)/gio \
|
|
$(GLIB_DEBUG_FLAGS)
|
|
|
|
noinst_PROGRAMS = $(TEST_PROGS) $(SAMPLE_PROGS)
|
|
progs_ldadd = \
|
|
$(top_builddir)/glib/libglib-2.0.la \
|
|
$(top_builddir)/gobject/libgobject-2.0.la \
|
|
$(top_builddir)/gio/libgio-2.0.la
|
|
|
|
|
|
TEST_PROGS += \
|
|
memory-input-stream \
|
|
memory-output-stream \
|
|
readwrite \
|
|
g-file \
|
|
g-file-info \
|
|
data-input-stream \
|
|
data-output-stream \
|
|
g-icon \
|
|
buffered-input-stream \
|
|
sleepy-stream \
|
|
filter-streams \
|
|
simple-async-result \
|
|
srvtarget
|
|
|
|
SAMPLE_PROGS = resolver socket-server socket-client echo-server httpd send-data
|
|
|
|
if OS_UNIX
|
|
TEST_PROGS += live-g-file unix-streams desktop-app-info
|
|
endif
|
|
|
|
memory_input_stream_SOURCES = memory-input-stream.c
|
|
memory_input_stream_LDADD = $(progs_ldadd)
|
|
|
|
memory_output_stream_SOURCES = memory-output-stream.c
|
|
memory_output_stream_LDADD = $(progs_ldadd)
|
|
|
|
g_file_SOURCES = g-file.c
|
|
g_file_LDADD = $(progs_ldadd)
|
|
|
|
readwrite_SOURCES = readwrite.c
|
|
readwrite_LDADD = $(progs_ldadd)
|
|
|
|
g_file_info_SOURCES = g-file-info.c
|
|
g_file_info_LDADD = $(progs_ldadd)
|
|
|
|
data_input_stream_SOURCES = data-input-stream.c
|
|
data_input_stream_LDADD = $(progs_ldadd)
|
|
|
|
data_output_stream_SOURCES = data-output-stream.c
|
|
data_output_stream_LDADD = $(progs_ldadd)
|
|
|
|
g_icon_SOURCES = g-icon.c
|
|
g_icon_LDADD = $(progs_ldadd)
|
|
|
|
buffered_input_stream_SOURCES = buffered-input-stream.c
|
|
buffered_input_stream_LDADD = $(progs_ldadd)
|
|
|
|
live_g_file_SOURCES = live-g-file.c
|
|
live_g_file_LDADD = $(progs_ldadd)
|
|
|
|
desktop_app_info_SOURCES = desktop-app-info.c
|
|
desktop_app_info_LDADD = $(progs_ldadd)
|
|
|
|
unix_streams_SOURCES = unix-streams.c
|
|
unix_streams_LDADD = $(progs_ldadd) \
|
|
$(top_builddir)/gthread/libgthread-2.0.la
|
|
|
|
simple_async_result_SOURCES = simple-async-result.c
|
|
simple_async_result_LDADD = $(progs_ldadd)
|
|
|
|
sleepy_stream_SOURCES = sleepy-stream.c
|
|
sleepy_stream_LDADD = $(progs_ldadd)
|
|
|
|
filter_streams_SOURCES = filter-streams.c
|
|
filter_streams_LDADD = $(progs_ldadd)
|
|
|
|
resolver_SOURCES = resolver.c
|
|
resolver_LDADD = $(progs_ldadd) \
|
|
$(top_builddir)/gthread/libgthread-2.0.la
|
|
|
|
socket_server_SOURCES = socket-server.c
|
|
socket_server_LDADD = $(progs_ldadd) \
|
|
$(top_builddir)/gthread/libgthread-2.0.la
|
|
|
|
socket_client_SOURCES = socket-client.c
|
|
socket_client_LDADD = $(progs_ldadd) \
|
|
$(top_builddir)/gthread/libgthread-2.0.la
|
|
|
|
echo_server_SOURCES = echo-server.c
|
|
echo_server_LDADD = $(progs_ldadd) \
|
|
$(top_builddir)/gthread/libgthread-2.0.la
|
|
|
|
httpd_SOURCES = httpd.c
|
|
httpd_LDADD = $(progs_ldadd) \
|
|
$(top_builddir)/gthread/libgthread-2.0.la
|
|
|
|
send_data_SOURCES = send-data.c
|
|
send_data_LDADD = $(progs_ldadd) \
|
|
$(top_builddir)/gthread/libgthread-2.0.la
|
|
|
|
srvtarget_SOURCES = srvtarget.c
|
|
srvtarget_LDADD = $(progs_ldadd)
|
|
|
|
DISTCLEAN_FILES = applications/mimeinfo.cache
|