Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revert "[TESTS] SMPI/MPICH3: Fix failing rma test"
[simgrid.git] / teshsuite / xbt / parallel_log_crashtest / parallel_log_crashtest.c
1 /* synchro_crashtest -- tries to crash the logging mechanism by doing parallel logs*/
2
3 /* Copyright (c) 2007-2017. 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 "simgrid/msg.h"
10 #include "xbt.h"
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(synchro_crashtest, "Logs of this example");
13
14 const int test_amount    = 99;  /* Up to 99 to not break the logs (and thus the testing mechanism) */
15 const int crasher_amount = 99;  /* Up to 99 to not break the logs (and thus the testing mechanism) */
16 int *id;                        /* to pass a pointer to the threads without race condition */
17
18 int more_info = 0;              /* SET IT TO TRUE TO GET MORE INFO */
19
20 /* Code ran by each thread */
21 static void* crasher_thread(void *arg)
22 {
23   int id = *(int *) arg;
24
25   for (int i = 0; i < test_amount; i++) {
26     if (more_info)
27       XBT_INFO("%03d (%02d|%02d|%02d|%02d|%02d|%02d|%02d|%02d|%02d)",
28              test_amount - i, id, id, id, id, id, id, id, id, id);
29     else
30       XBT_INFO("XXX (XX|XX|XX|XX|XX|XX|XX|XX|XX)");
31   }
32   return NULL;
33 }
34
35 static int crasher()
36 {
37   /* initializations of the philosopher mechanisms */
38   id = xbt_new0(int, crasher_amount);
39   xbt_os_thread_t* crashers = xbt_new(xbt_os_thread_t, crasher_amount);
40
41   for (int i = 0; i < crasher_amount; i++)
42     id[i] = i;
43
44   /* spawn threads */
45   for (int i = 0; i < crasher_amount; i++) {
46     char name[16];
47     snprintf(name, sizeof name, "thread %d", i);
48     crashers[i] = xbt_os_thread_create(name, &crasher_thread, &id[i], NULL );
49   }
50
51   /* wait for them */
52   for (int i = 0; i < crasher_amount; i++)
53     xbt_os_thread_join(crashers[i],NULL);
54
55   xbt_free(crashers);
56   xbt_free(id);
57
58   return 0;
59 }
60
61 int main(int argc, char *argv[])
62 {
63   MSG_init(&argc, argv);
64   return crasher();
65 }