Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
allow to use this test as a crash test
[simgrid.git] / examples / java / app / pingpong / Sender.java
index e207e25..10afd57 100644 (file)
@@ -20,16 +20,18 @@ public class Sender extends Process {
        public void main(String[] args) throws MsgException {
                Msg.info("Host count: " + args.length);
 
-               for(int pos = 0; pos < args.length ; pos++) {
-                       String hostname = Host.getByName(args[pos]).getName(); // Make sure that this host exists
-                       
-                       double time = Msg.getClock(); 
-                       Msg.info("sender time: " + time);
-
-                       PingPongTask task = new PingPongTask("no name", /* Duration: 0 flops */ 0, COMM_SIZE_LAT, time);
-                       task.send(hostname);
-               }
+               for (int i = 0 ; i<Main.TASK_COUNT; i++) {
+
+                       for(int pos = 0; pos < args.length ; pos++) {
+                               String hostname = Host.getByName(args[pos]).getName(); // Make sure that this host exists
 
+                               double time = Msg.getClock(); 
+                               Msg.info("sender time: " + time);
+
+                               PingPongTask task = new PingPongTask("no name", /* Duration: 0 flops */ 0, COMM_SIZE_LAT, time);
+                               task.send(hostname);
+                       }
+               }
                Msg.info("Done.");
        }
 }
\ No newline at end of file