Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
first try at killing GRAS -- does not compile yet
[simgrid.git] / teshsuite / gras / small_sleep / small_sleep.c
diff --git a/teshsuite/gras/small_sleep/small_sleep.c b/teshsuite/gras/small_sleep/small_sleep.c
deleted file mode 100644 (file)
index e5fd687..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/* small_sleep.c -- check what happens when the processes do sleeps very shortly*/
-
-/* Copyright (c) 2008, 2009, 2010. 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. */
-
-
-#include "gras.h"
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Small sleep test");
-
-int function(int argc, char *argv[]);
-
-
-int function(int argc, char *argv[])
-{
-  gras_init(&argc, argv);
-  gras_msg_handleall(100);
-  XBT_INFO("Let's go 1E-5");
-  gras_msg_handleall(1E-5);
-  XBT_INFO("Let's go 1E-10");
-  gras_msg_handleall(1E-10);
-  XBT_INFO("Let's go 1E-15");
-  gras_msg_handleall(1E-15);
-  XBT_INFO("Let's go 1E-20");
-  gras_msg_handleall(1E-20);
-  XBT_INFO("done");
-  gras_exit();
-  return 0;
-}