From 5fca91b94c151ea142e862d26474e042763bce4c Mon Sep 17 00:00:00 2001 From: mquinson Date: Tue, 4 Apr 2006 13:52:02 +0000 Subject: [PATCH] debug msg tweaking git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2064 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- examples/gras/rpc/rpc.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/gras/rpc/rpc.c b/examples/gras/rpc/rpc.c index 5d0335a662..28ae63b1ee 100644 --- a/examples/gras/rpc/rpc.c +++ b/examples/gras/rpc/rpc.c @@ -104,7 +104,8 @@ int client(int argc,char *argv[]) { if (!gotit) { THROW0(unknown_error,0,"Didn't got the remote exception!"); } - xbt_assert1(e.category == unknown_error, "Got wrong category: %d", e.category); + xbt_assert2(e.category == unknown_error, "Got wrong category: %d (instead of %d)", + e.category,unknown_error); xbt_assert1(e.value == 42, "Got wrong value: %d (!=42)", e.value); xbt_assert1(!strcmp(e.msg,"Some error we will catch on client side"), "Got wrong message: %s", e.msg);; @@ -114,7 +115,7 @@ int client(int argc,char *argv[]) { /* doxygen_ignore */ for (i=0; i<5; i++) { - INFO0("Call the exception raising RPC"); + INFO1("Call the exception raising RPC (i=%d)",i); TRY { gras_msg_rpccall(toserver, 6000.0, gras_msgtype_by_name("raise exception"), NULL, NULL); @@ -129,8 +130,8 @@ int client(int argc,char *argv[]) { /* doxygen_resume */ /* 9. Call a RPC which raises an exception (to test that exception propagation works) */ - INFO0("Call the exception raising RPC on the forwarder"); for (i=0;i<2;i++) { + INFO1("Call the exception raising RPC on the forwarder (i=%d)",i); TRY { gras_msg_rpccall(toforwarder, 6000.0, gras_msgtype_by_name("forward exception"), NULL, NULL); -- 2.20.1