Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cleanup in this test case
[simgrid.git] / teshsuite / java / sleep_host_off / Main.java
diff --git a/teshsuite/java/sleep_host_off/Main.java b/teshsuite/java/sleep_host_off/Main.java
deleted file mode 100644 (file)
index 3cc4cea..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-package sleep_host_off;
-
-import org.simgrid.msg.Host;
-import org.simgrid.msg.HostNotFoundException;
-import org.simgrid.msg.Msg;
-import org.simgrid.msg.NativeException;
-
-public class Main {
-
-    public static void main(String[] args) throws NativeException {
-       /* Init. internal values */
-        Msg.init(args);
-
-        if (args.length < 2) {
-            Msg.info("Usage  : Main platform_file.xml dployment_file.xml");
-            System.exit(1);
-        }
-
-       /* construct the platform and deploy the application */
-        Msg.createEnvironment(args[0]);
-        Msg.deployApplication(args[1]);
-
-        try {
-            Msg.run();
-        } catch (Exception e){
-            System.out.println("Bye bye the program crashes !");
-        }
-
-    }
-}