mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
3481763c97
Thu Nov 1 21:48:43 2001 Owen Taylor <otaylor@redhat.com> * tests/mainloop-test.c (recurser_idle): Recurse with may_block = FALSE, so we don't get into the pathology where the recurser_idle recurses for 10 iterations, and the only thing that is running is the recurser idle, which adds another recursion for each of those 10 iterations and.... * tests/mainloop-test.c (create_crawler): Fix race condition where a crawler source could be destroyed before it was added to the crawler array. * test/Makefile.am: Add mainloop-test back.
158 lines
4.4 KiB
Makefile
158 lines
4.4 KiB
Makefile
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/glib -I$(top_srcdir)/gmodule @GLIB_DEBUG_FLAGS@
|
|
|
|
EFENCE=
|
|
|
|
libglib = $(top_builddir)/glib/libglib-1.3.la
|
|
libgthread = $(top_builddir)/gthread/libgthread-1.3.la
|
|
libgmodule = $(top_builddir)/gmodule/libgmodule-1.3.la
|
|
libgobject = $(top_builddir)/gobject/libgobject-1.3.la
|
|
|
|
if PLATFORM_WIN32
|
|
libadd_libgmodule = $(libgmodule)
|
|
libadd_libglib = $(libglib)
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
$(test_scripts) \
|
|
makefile.msc.in \
|
|
makefile.mingw.in \
|
|
casefold.txt \
|
|
casemap.txt \
|
|
gen-casefold-txt.pl \
|
|
gen-casemap-txt.pl \
|
|
iochannel-test-infile \
|
|
utf8.txt
|
|
|
|
BUILT_EXTRA_DIST = \
|
|
makefile.mingw \
|
|
makefile.msc
|
|
|
|
if HAVE_CXX
|
|
CXX_TEST = cxx-test
|
|
cxx_test_LDADD = $(progs_LDADD)
|
|
cxx_test_SOURCES = cxx-test.C
|
|
else
|
|
CXX_TEST =
|
|
endif
|
|
|
|
if ENABLE_TIMELOOP
|
|
timeloop = timeloop timeloop-closure
|
|
endif
|
|
noinst_PROGRAMS = testglib patterntest testgdate testgdateparser unicode-normalize unicode-collate $(timeloop)
|
|
testglib_LDADD = $(libglib)
|
|
patterntest_LDADD = $(libglib)
|
|
testgdate_LDADD = $(libglib)
|
|
testgdateparser_LDADD = $(libglib)
|
|
unicode_normalize_LDADD = $(libglib)
|
|
unicode_collate_LDADD = $(libglib)
|
|
if ENABLE_TIMELOOP
|
|
timeloop_LDADD = $(libglib)
|
|
timeloop_closure_LDADD = $(libglib) $(libgobject)
|
|
endif
|
|
|
|
# mainloop-test removed for now until it is fixed
|
|
|
|
test_programs = \
|
|
array-test \
|
|
$(CXX_TEST) \
|
|
date-test \
|
|
dirname-test \
|
|
gio-test \
|
|
hash-test \
|
|
iochannel-test \
|
|
list-test \
|
|
mainloop-test \
|
|
module-test \
|
|
node-test \
|
|
queue-test \
|
|
qsort-test \
|
|
rand-test \
|
|
relation-test \
|
|
shell-test \
|
|
slist-test \
|
|
spawn-test \
|
|
strfunc-test \
|
|
string-test \
|
|
strtod-test \
|
|
thread-test \
|
|
threadpool-test \
|
|
tree-test \
|
|
type-test \
|
|
unicode-caseconv \
|
|
unicode-encoding \
|
|
uri-test
|
|
|
|
test_scripts = run-markup-tests.sh
|
|
|
|
test_script_support_programs = markup-test
|
|
|
|
check_PROGRAMS = $(test_programs) $(test_script_support_programs)
|
|
|
|
TESTS = $(test_programs) $(test_scripts)
|
|
TESTS_ENVIRONMENT = srcdir=$(srcdir)
|
|
|
|
progs_LDADD = $(EFENCE) $(libglib) $(EFENCE)
|
|
thread_LDADD = $(libgthread) @G_THREAD_LIBS@ $(progs_LDADD)
|
|
module_LDADD = $(libgmodule) @G_MODULE_LIBS@ $(progs_LDADD)
|
|
|
|
array_test_LDADD = $(progs_LDADD)
|
|
date_test_LDADD = $(progs_LDADD)
|
|
dirname_test_LDADD = $(progs_LDADD)
|
|
gio_test_LDADD = $(progs_LDADD)
|
|
hash_test_LDADD = $(progs_LDADD)
|
|
iochannel_test_LDADD = $(progs_LDADD)
|
|
list_test_LDADD = $(progs_LDADD)
|
|
mainloop_test_LDADD = $(thread_LDADD)
|
|
markup_test_LDADD = $(progs_LDADD)
|
|
module_test_LDADD = $(module_LDADD)
|
|
module_test_LDFLAGS = @G_MODULE_LDFLAGS@
|
|
node_test_LDADD = $(progs_LDADD)
|
|
queue_test_LDADD = $(progs_LDADD)
|
|
qsort_test_LDADD = $(progs_LDADD)
|
|
rand_test_LDADD = $(progs_LDADD)
|
|
relation_test_LDADD = $(progs_LDADD)
|
|
shell_test_LDADD = $(progs_LDADD)
|
|
slist_test_LDADD = $(progs_LDADD)
|
|
spawn_test_LDADD = $(progs_LDADD)
|
|
strfunc_test_LDADD = $(progs_LDADD)
|
|
string_test_LDADD = $(progs_LDADD)
|
|
strtod_test_LDADD = $(progs_LDADD) -lm
|
|
thread_test_LDADD = $(thread_LDADD)
|
|
threadpool_test_LDADD = $(thread_LDADD)
|
|
tree_test_LDADD = $(progs_LDADD)
|
|
type_test_LDADD = $(progs_LDADD)
|
|
unicode_encoding_LDADD = $(progs_LDADD)
|
|
unicode_caseconv_LDADD = $(progs_LDADD)
|
|
uri_test_LDADD = $(progs_LDADD)
|
|
|
|
lib_LTLIBRARIES = libmoduletestplugin_a.la libmoduletestplugin_b.la
|
|
|
|
# Prevent those libs from being installed
|
|
install-libLTLIBRARIES:
|
|
:
|
|
|
|
libmoduletestplugin_a_la_SOURCES = libmoduletestplugin_a.c
|
|
libmoduletestplugin_a_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module $(no_undefined)
|
|
libmoduletestplugin_a_la_LIBADD = @G_MODULE_LIBS@ $(libadd_libgmodule) $(libadd_libglib)
|
|
|
|
libmoduletestplugin_b_la_SOURCES = libmoduletestplugin_b.c
|
|
libmoduletestplugin_b_la_LDFLAGS = @G_MODULE_LDFLAGS@ -avoid-version -module $(no_undefined)
|
|
libmoduletestplugin_b_la_LIBADD = @G_MODULE_LIBS@ $(libadd_libgmodule) $(libadd_libglib)
|
|
|
|
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.mingw.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
makefile.msc: $(top_builddir)/config.status $(top_srcdir)/tests/makefile.msc.in
|
|
cd $(top_builddir) && CONFIG_FILES=tests/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|
|
|
|
dist-hook: $(BUILT_EXTRA_DIST)
|
|
files='$(BUILT_EXTRA_DIST)'; \
|
|
for f in $$files; do \
|
|
if test -f $$f; then d=.; else d=$(srcdir); fi; \
|
|
cp $$d/$$f $(distdir) || exit 1; done
|
|
mkdir $(distdir)/markups; \
|
|
for f in $(srcdir)/markups/* ; do \
|
|
cp $$f $(distdir)/markups; \
|
|
done
|