Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix usage string.
[simgrid.git] / teshsuite / mc / random-bug / random-bug.cpp
index 01a9dd8..87c26da 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2014-2020. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2014-2021. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -19,6 +19,7 @@ static void app()
 {
   int x = MC_random(0, 5);
   int y = MC_random(0, 5);
+  // XBT_INFO("got %d %d",x,y);
 
   if (behavior == Behavior::ASSERT) {
     MC_assert(x != 3 || y != 4);
@@ -34,7 +35,7 @@ static void app()
 int main(int argc, char* argv[])
 {
   simgrid::s4u::Engine e(&argc, argv);
-  xbt_assert(argc == 3, "Usage: random-bug raise|assert <platformfile>");
+  xbt_assert(argc == 3, "Usage: random-bug abort|assert|printf <platformfile>");
   if (strcmp(argv[1], "abort") == 0) {
     XBT_INFO("Behavior: abort");
     behavior = Behavior::ABORT;