Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / examples / java / cloud / migration / Main.java
index df35b64..af1aa25 100644 (file)
@@ -9,7 +9,7 @@ package cloud.migration;
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.Host;
 import org.simgrid.msg.HostNotFoundException;
-import org.simgrid.msg.NativeException;
+import org.simgrid.msg.MsgException;
 
 public class Main {
   private static boolean endOfTest = false;
@@ -22,18 +22,17 @@ public class Main {
     return endOfTest;
   }
 
-  public static void main(String[] args) throws NativeException {
+  public static void main(String[] args) throws MsgException {
     Msg.init(args);
 
-    if (args.length < 2) {
-      Msg.info("Usage  : Main platform_file.xml dployment_file.xml");
+    if (args.length < 1) {
+      Msg.info("Usage  : Main platform_file.xml");
       System.exit(1);
     }
 
     /* construct the platform and deploy the application */
     Msg.createEnvironment(args[0]);
-    Msg.deployApplication(args[1]);
-
+    new cloud.migration.Test("PM0","Test").start();
     Msg.run();
   }
 }