aboutsummaryrefslogtreecommitdiff
path: root/rumba/testbeds/emulab.py
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2017-02-13 11:11:22 +0100
committerSander Vrijders <sander.vrijders@intec.ugent.be>2017-02-13 11:11:22 +0100
commitafe0fe627fd1609c284386a6b8a27279d8d0a42f (patch)
tree8d646fdd2a7a7a3ccdb4087fb53bdce7bc508b64 /rumba/testbeds/emulab.py
parentddba01f87c57cf8096205783eaada858213b5410 (diff)
downloadrumba-afe0fe627fd1609c284386a6b8a27279d8d0a42f.tar.gz
rumba-afe0fe627fd1609c284386a6b8a27279d8d0a42f.zip
emulab: Fix complete experiment graph
During a previous refactor emulab support got broken, this fixes it.
Diffstat (limited to 'rumba/testbeds/emulab.py')
-rw-r--r--rumba/testbeds/emulab.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rumba/testbeds/emulab.py b/rumba/testbeds/emulab.py
index 735bf3a..b7c0c51 100644
--- a/rumba/testbeds/emulab.py
+++ b/rumba/testbeds/emulab.py
@@ -200,7 +200,7 @@ class EmulabTestbed(Testbed):
@param links: holds the links in the experiment
'''
- node_full_name = full_name(self, nodes[0].name)
+ node_full_name = self.full_name(nodes[0].name)
cmd = 'cat /var/emulab/boot/topomap'
topomap = ssh.execute_command(self, node_full_name, cmd)
# Almost as ugly as yo momma
@@ -223,7 +223,7 @@ class EmulabTestbed(Testbed):
for node in nodes:
cmd = 'cat /var/emulab/boot/ifmap'
- node_full_name = full_name(self, node.name)
+ node_full_name = self.full_name(node.name)
output = ssh.execute_command(self, node_full_name, cmd)
output = re.split('\\\\n', output)
for item in output:
@@ -241,4 +241,4 @@ class EmulabTestbed(Testbed):
self._create_experiment(nodes, links)
self.swap_exp_in()
self.wait_until_nodes_up()
- es.complete_experiment_graph(nodes, links)
+ self.complete_experiment_graph(nodes, links)