Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Unify the host names in cluster description files
[simgrid.git] / teshsuite / msg / app-bittorrent / generate.py
index 4c504d8fe4b349c05867c388522a89a409933e2c..16b2dc3ba22f3e3eefa502a6bc4fa1a7d4b0ec43 100755 (executable)
@@ -30,7 +30,7 @@ all_ids = [42]
 sys.stdout.write("<?xml version='1.0'?>\n"
                  "<!DOCTYPE platform SYSTEM \"http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd\">\n"
                  "<platform version=\"4\">\n"
-                 "  <process host=\"node-0.acme.org\" function=\"tracker\">\n"
+                 "  <process host=\"node-0.simgrid.org\" function=\"tracker\">\n"
                  "    <argument value=\"%d\"/>\n  </process>\n" % end_date)
 
 for i in range(1, nb_nodes):
@@ -40,7 +40,7 @@ for i in range(1, nb_nodes):
         my_id = random.randint(0, max_id)
         ok = not my_id in all_ids
     start_date = i * 10
-    line = "  <process host=\"node-%d.acme.org\" function=\"peer\">\n" % i
+    line = "  <process host=\"node-%d.simgrid.org\" function=\"peer\">\n" % i
     line += "    <argument value=\"%d\"/>\n    <argument value=\"%d\"/>\n" % (
         my_id, end_date)
     if random.randint(0, 100) < seed_percentage: