summaryrefslogtreecommitdiff
path: root/Makefile-test.am
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-04-30 17:50:37 -0400
committerColin Walters <walters@verbum.org>2009-05-27 12:58:08 -0400
commite6466712a28c29f23e1e3e762c68ccc2d8e339a5 (patch)
treea235a83ab3524f21044ab3614e63a10987aaee3f /Makefile-test.am
parentaa1b6afb9e19d28db446fe204886a365db3138e4 (diff)
downloadgjs-e6466712a28c29f23e1e3e762c68ccc2d8e339a5.tar.gz
Bug 580948 - Add DBus support
This patch merges in code from Litl implementing a DBus module. At a high level there are four pieces. First, the "gjs-dbus" library is a C support library for DBus. Second, the modules/dbus*.[ch] implement parts of the JavaScript API in C. Third, the modules/dbus.js file fills out the rest of the JavaScript API and implementation. Fourth, there are tests and examples.
Diffstat (limited to 'Makefile-test.am')
-rw-r--r--Makefile-test.am5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile-test.am b/Makefile-test.am
index 141046b8..42d0073f 100644
--- a/Makefile-test.am
+++ b/Makefile-test.am
@@ -72,6 +72,11 @@ test: $(gjsnative_LTLIBRARIES) ${TEST_PROGS}
check: test
+gdb-check gdb-test: $(gjsnative_LTLIBRARIES) ${TEST_PROGS}
+ failed=; for prog in ${TEST_PROGS}; do \
+ ${TESTS_ENVIRONMENT} libtool --mode=execute gdb --args $$prog; \
+ done
+
valgrind-check valgrind-test: $(gjsnative_LTLIBRARIES) ${TEST_PROGS}
@test -z "${TEST_PROGS}" || { \
failed=; for prog in ${TEST_PROGS}; do \