diff options
| author | Ted Gould <ted@gould.cx> | 2010-09-09 09:41:13 -0500 |
|---|---|---|
| committer | Ted Gould <ted@gould.cx> | 2010-09-09 09:41:13 -0500 |
| commit | ae53bdc6ad8467d10dc7bc733477f87a23facb4d (patch) | |
| tree | 6cfed2d1aa96f52598c154c3fb8111be98d19053 /tests/Makefile.am | |
| parent | f4ff4261e9699cdbb9621a6250c4b29ec33d5622 (diff) | |
| parent | 95d4df8bfd7c9a2aa87be499460507b29f947478 (diff) | |
| download | libdbusmenu-ae53bdc6ad8467d10dc7bc733477f87a23facb4d.tar.gz libdbusmenu-ae53bdc6ad8467d10dc7bc733477f87a23facb4d.tar.bz2 libdbusmenu-ae53bdc6ad8467d10dc7bc733477f87a23facb4d.zip | |
Import upstream version 0.3.13
Diffstat (limited to 'tests/Makefile.am')
| -rw-r--r-- | tests/Makefile.am | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 9f621cb..aa79c8f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,6 +5,7 @@ CLEANFILES= TESTS = \ test-glib-objects-test \ + test-glib-events \ test-glib-layout \ test-glib-properties \ test-glib-proxy \ @@ -20,6 +21,8 @@ TESTS = \ check_PROGRAMS = \ glib-server-nomenu \ test-glib-objects \ + test-glib-events-client \ + test-glib-events-server \ test-glib-layout-client \ test-glib-layout-server \ test-glib-properties-client \ @@ -129,6 +132,37 @@ test_glib_layout_client_LDADD = \ $(DBUSMENUGLIB_LIBS) ###################### +# Test Glib Events +###################### + +test-glib-events: test-glib-events-client test-glib-events-server Makefile.am + @echo "#!/bin/bash" > $@ + @echo $(DBUS_RUNNER) --task ./test-glib-events-client --task-name Client --task ./test-glib-events-server --task-name Server --ignore-return >> $@ + @chmod +x $@ + +test_glib_events_server_SOURCES = \ + test-glib-events-server.c + +test_glib_events_server_CFLAGS = \ + -I $(srcdir)/.. \ + $(DBUSMENUGLIB_CFLAGS) -Wall -Werror + +test_glib_events_server_LDADD = \ + ../libdbusmenu-glib/libdbusmenu-glib.la \ + $(DBUSMENUGLIB_LIBS) + +test_glib_events_client_SOURCES = \ + test-glib-events-client.c + +test_glib_events_client_CFLAGS = \ + -I $(srcdir)/.. \ + $(DBUSMENUGLIB_CFLAGS) -Wall -Werror + +test_glib_events_client_LDADD = \ + ../libdbusmenu-glib/libdbusmenu-glib.la \ + $(DBUSMENUGLIB_LIBS) + +###################### # Test JSON ###################### |
