Add a detailed test case for interface initialization, testing the ability

Wed Aug 27 01:25:40 2003  Owen Taylor  <otaylor@redhat.com>

        * Makefile.am testifaceinit.c: Add a detailed test case
        for interface initialization, testing the ability to
        add interfaces during class initialization and the ordering
        of interface base_init, class init, and interface_init.
        (Expected to fail at the moment.)
This commit is contained in:
Owen Taylor
2003-08-27 05:28:39 +00:00
committed by Owen Taylor
parent d2cd289bf2
commit 6bd3d8bcf6
4 changed files with 867 additions and 1 deletions

View File

@@ -177,17 +177,19 @@ libgobject_2_0_la_SOURCES = $(gobject_target_sources)
#
bin_PROGRAMS = gobject-query glib-genmarshal
bin_SCRIPTS = glib-mkenums
noinst_PROGRAMS = testgobject testoverride
noinst_PROGRAMS = testgobject testifaceinit testoverride
# source files
gobject_query_SOURCES = gobject-query.c
glib_genmarshal_SOURCES = glib-genmarshal.c
testgobject_SOURCES = testgobject.c
testifaceinit_SOURCES = testifaceinit.c
testoverride_SOURCES = testoverride.c
# link programs against libgobject
progs_LDADD = ./libgobject-2.0.la $(libglib)
glib_genmarshal_LDADD = $(libglib)
gobject_query_LDADD = $(progs_LDADD)
testgobject_LDADD = $(progs_LDADD)
testifaceinit_LDADD = $(progs_LDADD)
testoverride_LDADD = $(progs_LDADD)
#