summaryrefslogtreecommitdiffstats
path: root/dbus/dbus-test.c
diff options
context:
space:
mode:
authorHavoc Pennington <hp@redhat.com>2002-12-25 18:00:10 +0000
committerHavoc Pennington <hp@redhat.com>2002-12-25 18:00:10 +0000
commit2297787455989c9ec47ea899b2ad6f3f6ef72c05 (patch)
tree51d34f05ec358e1302e869c4d74432e055168b51 /dbus/dbus-test.c
parentf25559f534de1d81631b0c517b24a9b0e0818d21 (diff)
2002-12-25 Havoc Pennington <hp@pobox.com>
* doc/dbus-sasl-profile.txt: docs on the authentication protocol, it is a simple protocol that just maps directly to SASL. * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol initial implementation, not actually used yet. * dbus/dbus-string.c (_dbus_string_find): new function (_dbus_string_equal): new function (_dbus_string_base64_encode): new function (_dbus_string_base64_decode): new function
Diffstat (limited to 'dbus/dbus-test.c')
-rw-r--r--dbus/dbus-test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbus/dbus-test.c b/dbus/dbus-test.c
index d09c5486..095675b3 100644
--- a/dbus/dbus-test.c
+++ b/dbus/dbus-test.c
@@ -37,6 +37,10 @@ int
main (int argc,
char **argv)
{
+ printf ("%s: running string tests\n", argv[0]);
+ if (!_dbus_string_test ())
+ die ("strings");
+
printf ("%s: running marshalling tests\n", argv[0]);
if (!_dbus_marshal_test ())
die ("marshalling");
@@ -45,10 +49,6 @@ main (int argc,
if (!_dbus_mem_pool_test ())
die ("memory pools");
- printf ("%s: running string tests\n", argv[0]);
- if (!_dbus_string_test ())
- die ("strings");
-
printf ("%s: running linked list tests\n", argv[0]);
if (!_dbus_list_test ())
die ("lists");