This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU gsasl".
http://git.savannah.gnu.org/cgit/gsasl.git/commit/?id=6a99a84e4d0167550907c9f57450edb95a5e6243 The branch, master has been updated via 6a99a84e4d0167550907c9f57450edb95a5e6243 (commit) from d3482691d3bbf9c9b45f5561bdba677c212dee50 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6a99a84e4d0167550907c9f57450edb95a5e6243 Author: Simon Josefsson <[email protected]> Date: Thu May 20 12:35:39 2010 +0200 Fix error strings in self-tests. ----------------------------------------------------------------------- Summary of changes: tests/cram-md5.c | 8 +++++--- tests/digest-md5.c | 8 +++++--- tests/gs2-krb5.c | 6 ++++-- tests/gssapi.c | 6 ++++-- tests/old-cram-md5.c | 8 +++++--- tests/old-digest-md5.c | 6 ++++-- tests/old-gssapi.c | 8 +++++--- tests/scram.c | 6 ++++-- 8 files changed, 36 insertions(+), 20 deletions(-) diff --git a/tests/cram-md5.c b/tests/cram-md5.c index 1227feb..ab27f1c 100644 --- a/tests/cram-md5.c +++ b/tests/cram-md5.c @@ -1,5 +1,5 @@ /* cram-md5.c --- Test the CRAM-MD5 mechanism. - * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009 Simon Josefsson + * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010 Simon Josefsson * * This file is part of GNU SASL. * @@ -96,13 +96,15 @@ doit (void) res = gsasl_server_start (ctx, "CRAM-MD5", &server); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } res = gsasl_client_start (ctx, "CRAM-MD5", &client); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } diff --git a/tests/digest-md5.c b/tests/digest-md5.c index 4616d47..af8a26f 100644 --- a/tests/digest-md5.c +++ b/tests/digest-md5.c @@ -1,5 +1,5 @@ /* digest-md5.c --- Test the DIGEST-MD5 mechanism. - * Copyright (C) 2002, 2003, 2004, 2007, 2008, 2009 Simon Josefsson + * Copyright (C) 2002, 2003, 2004, 2007, 2008, 2009, 2010 Simon Josefsson * * This file is part of GNU SASL. * @@ -192,13 +192,15 @@ doit (void) res = gsasl_server_start (ctx, "DIGEST-MD5", &server); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } res = gsasl_client_start (ctx, "DIGEST-MD5", &client); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } diff --git a/tests/gs2-krb5.c b/tests/gs2-krb5.c index d804f15..2062ba6 100644 --- a/tests/gs2-krb5.c +++ b/tests/gs2-krb5.c @@ -144,13 +144,15 @@ doit (void) rc = gsasl_server_start (ctx, "GS2-KRB5", &server); if (rc != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", rc, gsasl_strerror (rc)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + rc, gsasl_strerror (rc)); return; } rc = gsasl_client_start (ctx, "GS2-KRB5", &client); if (rc != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", rc, gsasl_strerror (rc)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + rc, gsasl_strerror (rc)); return; } diff --git a/tests/gssapi.c b/tests/gssapi.c index ae98aae..ba68894 100644 --- a/tests/gssapi.c +++ b/tests/gssapi.c @@ -125,13 +125,15 @@ doit (void) rc = gsasl_server_start (ctx, "GSSAPI", &server); if (rc != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", rc, gsasl_strerror (rc)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + rc, gsasl_strerror (rc)); return; } rc = gsasl_client_start (ctx, "GSSAPI", &client); if (rc != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", rc, gsasl_strerror (rc)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + rc, gsasl_strerror (rc)); return; } diff --git a/tests/old-cram-md5.c b/tests/old-cram-md5.c index e116c94..f9df9f1 100644 --- a/tests/old-cram-md5.c +++ b/tests/old-cram-md5.c @@ -1,5 +1,5 @@ /* cram-md5.c --- Test the CRAM-MD5 mechanism, using old callback API. - * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2009 Simon Josefsson + * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2009, 2010 Simon Josefsson * * This file is part of GNU SASL. * @@ -120,13 +120,15 @@ doit (void) res = gsasl_server_start (ctx, "CRAM-MD5", &server); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } res = gsasl_client_start (ctx, "CRAM-MD5", &client); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } diff --git a/tests/old-digest-md5.c b/tests/old-digest-md5.c index 092eb6f..b27a02c 100644 --- a/tests/old-digest-md5.c +++ b/tests/old-digest-md5.c @@ -157,13 +157,15 @@ doit (void) res = gsasl_server_start (ctx, "DIGEST-MD5", &server); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } res = gsasl_client_start (ctx, "DIGEST-MD5", &client); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } diff --git a/tests/old-gssapi.c b/tests/old-gssapi.c index 8970481..e433040 100644 --- a/tests/old-gssapi.c +++ b/tests/old-gssapi.c @@ -1,5 +1,5 @@ /* old-gssapi.c --- Test the GSSAPI mechanism, using old callback API. - * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2009 Simon Josefsson + * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2009, 2010 Simon Josefsson * * This file is part of GNU SASL. * @@ -157,13 +157,15 @@ doit (void) rc = gsasl_server_start (ctx, "GSSAPI", &server); if (rc != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", rc, gsasl_strerror (rc)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + rc, gsasl_strerror (rc)); return; } rc = gsasl_client_start (ctx, "GSSAPI", &client); if (rc != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", rc, gsasl_strerror (rc)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + rc, gsasl_strerror (rc)); return; } diff --git a/tests/scram.c b/tests/scram.c index a9c7b8f..7e44393 100644 --- a/tests/scram.c +++ b/tests/scram.c @@ -151,13 +151,15 @@ doit (void) res = gsasl_server_start (ctx, "SCRAM-SHA-1", &server); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_server_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } res = gsasl_client_start (ctx, "SCRAM-SHA-1", &client); if (res != GSASL_OK) { - fail ("gsasl_init() failed (%d):\n%s\n", res, gsasl_strerror (res)); + fail ("gsasl_client_start() failed (%d):\n%s\n", + res, gsasl_strerror (res)); return; } hooks/post-receive -- GNU gsasl _______________________________________________ Gsasl-commit mailing list [email protected] http://lists.gnu.org/mailman/listinfo/gsasl-commit
