Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix usage string.
[simgrid.git] / teshsuite / mc / random-bug / random-bug.cpp
1 /* Copyright (c) 2014-2021. 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 class Behavior { ABORT, ASSERT, PRINTF };
14
15 Behavior behavior;
16
17 /** A fake application with a bug occurring for some random values */
18 static void app()
19 {
20   int x = MC_random(0, 5);
21   int y = MC_random(0, 5);
22   // XBT_INFO("got %d %d",x,y);
23
24   if (behavior == Behavior::ASSERT) {
25     MC_assert(x != 3 || y != 4);
26   } else if (behavior == Behavior::PRINTF) {
27     if (x == 3 && y == 4)
28       XBT_ERROR("Error reached");
29   } else { // behavior == Behavior::ABORT
30     abort();
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 abort|assert|printf <platformfile>");
39   if (strcmp(argv[1], "abort") == 0) {
40     XBT_INFO("Behavior: abort");
41     behavior = Behavior::ABORT;
42   } else if (strcmp(argv[1], "assert") == 0) {
43     XBT_INFO("Behavior: assert");
44     behavior = Behavior::ASSERT;
45   } else if (strcmp(argv[1], "printf") == 0) {
46     XBT_INFO("Behavior: printf");
47     behavior = Behavior::PRINTF;
48   } else {
49     xbt_die("Please use either 'abort', 'assert' or 'printf' as first parameter, to specify what to do when the error "
50             "is found.");
51   }
52
53   e.load_platform(argv[2]);
54
55   simgrid::s4u::Actor::create("app", simgrid::s4u::Host::by_name("Fafard"), &app);
56   e.run();
57 }