From: Bart Polot Date: Thu, 21 Jun 2012 15:49:15 +0000 (+0000) Subject: - fix #2315 X-Git-Tag: initial-import-from-subversion-38251~12894 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fbd971b93aee289f9e9015adee9a3437c38787fb;p=oweals%2Fgnunet.git - fix #2315 --- diff --git a/src/mesh/test_mesh_local_1.c b/src/mesh/test_mesh_local_1.c index d80bee8aa..859b37a66 100644 --- a/src/mesh/test_mesh_local_1.c +++ b/src/mesh/test_mesh_local_1.c @@ -343,13 +343,14 @@ main (int argc, char *argv[]) if (GNUNET_OK != ret) { - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "run failed with error code %d\n", + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "run failed with error code %d\n", ret); return 1; } if (GNUNET_SYSERR == result) { - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "test failed\n"); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "test failed: connect and find_by_type\n"); return 1; } GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test ok\n"); diff --git a/src/mesh/test_mesh_local_2.c b/src/mesh/test_mesh_local_2.c index d495b7161..60b90820e 100644 --- a/src/mesh/test_mesh_local_2.c +++ b/src/mesh/test_mesh_local_2.c @@ -335,13 +335,14 @@ main (int argc, char *argv[]) if (GNUNET_OK != ret) { - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "run failed with error code %d\n", + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "run failed with error code %d\n", ret); return 1; } if (GNUNET_SYSERR == result) { - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "test failed\n"); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "test failed: find_by_type, then connect\n"); return 1; } GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test ok\n");