Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix+activate rma test
[simgrid.git] / teshsuite / mc / random-bug / random-bug.cpp
1 /* Copyright (c) 2014-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <cstring>
7 #include <simgrid/modelchecker.h>
8 #include <simgrid/s4u.hpp>
9 #include <xbt/log.h>
10
11 XBT_LOG_NEW_DEFAULT_CATEGORY(random_bug, "For this example");
12
13 enum { ABORT, ASSERT, PRINTF } behavior;
14
15 /** An (fake) application with a bug occuring for some random values */
16 static void app()
17 {
18   int x = MC_random(0, 5);
19   int y = MC_random(0, 5);
20
21   switch (behavior) {
22     case ABORT:
23       abort();
24     case ASSERT:
25       MC_assert(x != 3 || y != 4);
26       break;
27     case PRINTF:
28       if (x == 3 && y == 4)
29         XBT_ERROR("Error reached");
30       break;
31   }
32 }
33
34 /** Main function */
35 int main(int argc, char* argv[])
36 {
37   simgrid::s4u::Engine e(&argc, argv);
38   xbt_assert(argc == 3, "Usage: random-bug raise|assert <platformfile>");
39   if (strcmp(argv[1], "abort") == 0) {
40     XBT_INFO("Behavior: abort");
41     behavior = ABORT;
42   } else if (strcmp(argv[1], "assert") == 0) {
43     XBT_INFO("Behavior: assert");
44     behavior = ASSERT;
45   } else if (strcmp(argv[1], "printf") == 0) {
46     XBT_INFO("Behavior: printf");
47     behavior = PRINTF;
48   }
49
50   e.load_platform(argv[2]);
51
52   simgrid::s4u::Actor::create("app", simgrid::s4u::Host::by_name("Fafard"), &app);
53   e.run();
54 }