tests: Re-wire the testgobject test program to the build system

After the build system rework in commit f9eb9e testgobject fell through
the cracks and was not built since then.

Re-enable it, even if it is currently failing due to commit 31fde56.

(Tweaked by Philip Withnall to add meson.build support.)

https://bugzilla.gnome.org/show_bug.cgi?id=701156
This commit is contained in:
Emanuele Aina 2013-06-13 11:30:37 +02:00 committed by Philip Withnall
parent edcabe1a4e
commit e73831d808
2 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,7 @@ installed_test_programs = \
signals \ signals \
singleton \ singleton \
references \ references \
testgobject \
$(NULL) $(NULL)
# Don't install these ones, and keep them out of 'make check' because they take too long... # Don't install these ones, and keep them out of 'make check' because they take too long...
@ -43,6 +44,7 @@ accumulator_SOURCES = accumulator.c testmarshal.c testmarshal.h
signals_SOURCES = signals.c signals_SOURCES = signals.c
defaultiface_SOURCES = defaultiface.c testmodule.c testmodule.h defaultiface_SOURCES = defaultiface.c testmodule.c testmodule.h
dynamictype_SOURCES = dynamictype.c testmodule.c testmodule.h dynamictype_SOURCES = dynamictype.c testmodule.c testmodule.h
testgobject_SOURCES = testgobject.c
if ENABLE_TIMELOOP if ENABLE_TIMELOOP
installed_test_programs += timeloop-closure installed_test_programs += timeloop-closure

View File

@ -8,6 +8,7 @@ gobject_tests = [
['signals'], ['signals'],
['singleton'], ['singleton'],
['references'], ['references'],
['testgobject'],
] ]
# We cannot use gnome.genmarshal() here # We cannot use gnome.genmarshal() here