X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cc01c6a871dbbfd0cc84e26eb9f94aeb539e613e..946a31b2223cc23d86d4482ab8a99764992baf73:/teshsuite/xbt/log_large_test.c diff --git a/teshsuite/xbt/log_large_test.c b/teshsuite/xbt/log_large_test.c index d51d8f363a..20c4bbc4b9 100644 --- a/teshsuite/xbt/log_large_test.c +++ b/teshsuite/xbt/log_large_test.c @@ -6,8 +6,7 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "gras.h" -#include "xbt/synchro.h" +#include "xbt.h" XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logs of this example"); @@ -38,9 +37,9 @@ int main(int argc, char *argv[]) xbt_init(&argc, argv); - INFO10("This is a very large message:\n0%s1%s2%s3%s4%s5%s6%s7%s8%s9%s", + XBT_INFO("This is a very large message:\n0%s1%s2%s3%s4%s5%s6%s7%s8%s9%s", tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp); - INFO1("Done (strlen>%d)", (int) (10 * strlen(tmp))); + XBT_INFO("Done (strlen>%d)", (int) (10 * strlen(tmp))); free(tmp); return 0;