summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-test.c
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@codefactory.se>2002-12-25 14:18:04 +0000
committerAnders Carlsson <andersca@codefactory.se>2002-12-25 14:18:04 +0000
commitf25559f534de1d81631b0c517b24a9b0e0818d21 (patch)
tree61e6fb612eb3e44d23850454babf4df79e794168 /dbus/dbus-test.c
parent0d1de7612dc9e9649e59064bca5610357888a382 (diff)
2002-12-25 Anders Carlsson <andersca@codefactory.se>
* dbus/Makefile.am: * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double), (_dbus_marshal_int32), (_dbus_marshal_uint32), (_dbus_demarshal_double), (_dbus_demarshal_int32), (_dbus_demarshal_uint32), (_dbus_marshal_test): * dbus/dbus-marshal.h: * dbus/dbus-protocol.h: * dbus/dbus-test.c: (main): * dbus/dbus-test.h: Add un-optimized marshalling/demarshalling routines.
Diffstat (limited to 'dbus/dbus-test.c')
-rw-r--r--dbus/dbus-test.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/dbus/dbus-test.c b/dbus/dbus-test.c
index df840a7c..d09c5486 100644
--- a/dbus/dbus-test.c
+++ b/dbus/dbus-test.c
@@ -37,7 +37,10 @@ int
main (int argc,
char **argv)
{
-
+ printf ("%s: running marshalling tests\n", argv[0]);
+ if (!_dbus_marshal_test ())
+ die ("marshalling");
+
printf ("%s: running memory pool tests\n", argv[0]);
if (!_dbus_mem_pool_test ())
die ("memory pools");