Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Fix comm_determinism to work in split MCer/MCed
[simgrid.git] / teshsuite / mc / replay / random_bug.c
1 /* Copyright (c) 2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8
9 #include <xbt/log.h>
10
11 #include <msg/msg.h>
12 #include <simgrid/modelchecker.h>
13
14 XBT_LOG_NEW_DEFAULT_CATEGORY(random_bug, "Application");
15
16 /** An (fake) application with a bug occuring for some random values
17  */
18 static int app(int argc, char *argv[])
19 {
20   int x = MC_random(0, 5);
21   int y = MC_random(0, 5);
22
23   if (MC_is_active()) {
24     MC_assert(x !=3 || y !=4);
25   }
26   if (x ==3 && y ==4) {
27     fprintf(stderr, "Error reached\n");
28   }
29
30   return 0;
31 }
32
33 /** Main function */
34 int main(int argc, char *argv[])
35 {
36   MSG_init(&argc, argv);
37   MSG_function_register("app", &app);
38   MSG_create_environment(argv[1]);
39   MSG_launch_application(argv[2]);
40   return MSG_main();
41 }