Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot//simgrid/simgrid
[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 <msg/msg.h>
10 #include <simgrid/modelchecker.h>
11
12 /** An (fake) application with a bug occuring for some random values
13  */
14 static int app(int argc, char *argv[])
15 {
16   int x = MC_random(0, 5);
17   int y = MC_random(0, 5);
18
19   if (MC_is_active()) {
20     MC_assert(x !=3 || y !=4);
21   }
22   if (x ==3 && y ==4) {
23     fprintf(stderr, "Error reached\n");
24   }
25
26   return 0;
27 }
28
29 /** Main function */
30 int main(int argc, char *argv[])
31 {
32   MSG_init(&argc, argv);
33   MSG_function_register("app", &app);
34   MSG_create_environment(argv[1]);
35   MSG_launch_application(argv[2]);
36   return (int) MSG_main();
37 }