diff options
| author | Ted Gould <ted@gould.cx> | 2009-12-22 14:38:35 -0600 |
|---|---|---|
| committer | Ted Gould <ted@gould.cx> | 2009-12-22 14:38:35 -0600 |
| commit | 8a22801594dfe9d2628a1b80984f3f917137d053 (patch) | |
| tree | 6259722ba4e6556d82a4cb62a89b08a10b3a2590 /tests/Makefile.am | |
| parent | e930f7d167fe1e5a889be0fd7e1ed0b625773fe4 (diff) | |
| parent | 7ca0624a5be9ffffa16ea8e6d6d8533cb7d87efb (diff) | |
| download | libdbusmenu-8a22801594dfe9d2628a1b80984f3f917137d053.tar.gz libdbusmenu-8a22801594dfe9d2628a1b80984f3f917137d053.tar.bz2 libdbusmenu-8a22801594dfe9d2628a1b80984f3f917137d053.zip | |
Fixing the handling of typed properties, especially bools.
Diffstat (limited to 'tests/Makefile.am')
| -rw-r--r-- | tests/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 1d58700..fa18b9d 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -2,6 +2,7 @@ DBUS_RUNNER=dbus-test-runner TESTS = \ + test-glib-objects-test \ test-glib-layout \ test-glib-properties \ test-glib-simple-items \ @@ -10,6 +11,7 @@ TESTS = \ check_PROGRAMS = \ glib-server-nomenu \ + test-glib-objects \ test-glib-layout-client \ test-glib-layout-server \ test-glib-properties-client \ @@ -71,6 +73,28 @@ test_glib_layout_client_LDADD = \ ###################### +# Test Glib Object +###################### + +OBJECT_XML_REPORT = test-glib-objects.xml + +test-glib-objects-test: test-glib-objects Makefile.am + @echo "#!/bin/bash" > $@ + @echo $(DBUS_RUNNER) -b $@.bustle --task gtester --parameter -k --parameter -o --parameter $(OBJECT_XML_REPORT) --parameter ./test-glib-objects >> $@ + @chmod +x $@ + +test_glib_objects_SOURCES = \ + test-glib-objects.c + +test_glib_objects_CFLAGS = \ + -I $(srcdir)/.. \ + $(DBUSMENUGLIB_CFLAGS) -Wall -Werror + +test_glib_objects_LDADD = \ + ../libdbusmenu-glib/libdbusmenu-glib.la \ + $(DBUSMENUGLIB_LIBS) + +###################### # Test Glib Properties ###################### @@ -239,6 +263,8 @@ distclean-local: DISTCLEANFILES = \ $(TESTS) \ + $(OBJECT_XML_FILE) \ + test-glib-objects-test.bustle \ test-glib-layout.bustle \ test-glib-properties.bustle \ test-glib-simple-items.bustle \ |
