still rubbing off differences
[nepi.git] / examples / linux / testing / scalability.py
index 0972961..1c9033b 100644 (file)
@@ -4,9 +4,8 @@
 #    Copyright (C) 2013 INRIA
 #
 #    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
-#    the Free Software Foundation, either version 3 of the License, or
-#    (at your option) any later version.
+#    it under the terms of the GNU General Public License version 2 as
+#    published by the Free Software Foundation;
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -27,15 +26,15 @@ import os
 import time
 
 def add_node(ec, host, user):
-    node = ec.register_resource("LinuxNode")
+    node = ec.register_resource("linux::Node")
     ec.set(node, "hostname", host)
     ec.set(node, "username", user)
-    ec.set(node, "cleanHome", True)
+    ec.set(node, "cleanExperiment", True)
     ec.set(node, "cleanProcesses", True)
     return node
 
 def add_app(ec):
-    app = ec.register_resource("LinuxApplication")
+    app = ec.register_resource("linux::Application")
     ec.set(app, "command", "sleep 30; echo 'HOLA'")
     return app
 
@@ -149,7 +148,7 @@ if __name__ == '__main__':
 
     for host in hostnames:
         node = add_node(ec, host, pl_slice)
-        for i in xrange(20):
+        for i in range(20):
             app = add_app(ec)
             ec.register_connection(app, node)
             apps.append(app)