Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a997332a27216411873e9b276bcc8d88c14fb39f
[simgrid.git] / teshsuite / xbt / log_large / log_large.c
1 /* log_large_test -- log a very large string to test the dynamic variants   */
2
3 /* Copyright (c) 2007-2020. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "xbt.h"
10 #include <simgrid/msg.h>
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logs of this example");
13
14 int main(int argc, char *argv[])
15 {
16   MSG_init(&argc, argv);
17   char *tmp = bprintf("\n%d%s%d%s%d%s%d%s%d%s%d%s%d%s%d%s%d%s%d%s",
18     1, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
19     2, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
20     3, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
21     4, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
22     5, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
23     6, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
24     7, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
25     8, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
26     9, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n",
27     0, ".........1.........2.........3.........4.........5.........6.........7.........8.........9.........0\n");
28
29   XBT_INFO("This is a very large message:\n0%s1%s2%s3%s4%s5%s6%s7%s8%s9%s",
30          tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp);
31   XBT_INFO("Done (strlen>%d)", (int) (10 * strlen(tmp)));
32   free(tmp);
33
34   return 0;
35 }