Fixed the mis-spelling of rendezvous.
Signed-off-by: Travis Miller <raphtee@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3320 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/barriertest/barriertest.py b/client/tests/barriertest/barriertest.py
index 701ba15..11d96e2 100644
--- a/client/tests/barriertest/barriertest.py
+++ b/client/tests/barriertest/barriertest.py
@@ -11,20 +11,20 @@
b0 = self.job.barrier(hostid, "sync_profilers", timeout_start,
port=63100)
- b0.rendevous_servers(masterid, hostid)
+ b0.rendezvous_servers(masterid, hostid)
b1 = self.job.barrier(hostid, "start_profilers", timeout_start,
port=63100)
- b1.rendevous_servers(masterid, hostid)
+ b1.rendezvous_servers(masterid, hostid)
b2 = self.job.barrier(hostid, "local_sync_profilers", timeout_sync)
- b2.rendevous(*all_ids)
+ b2.rendezvous(*all_ids)
profilers.start(self)
b3 = self.job.barrier(hostid, "stop_profilers", timeout_stop,
port=63100)
- b3.rendevous_servers(masterid, hostid)
+ b3.rendezvous_servers(masterid, hostid)
profilers.stop(self)
profilers.report(self)
diff --git a/client/tests/iperf/iperf.py b/client/tests/iperf/iperf.py
index 31dd620..66c8478 100644
--- a/client/tests/iperf/iperf.py
+++ b/client/tests/iperf/iperf.py
@@ -67,12 +67,12 @@
# Wait up to ten minutes for the server and client
# to reach this point
self.job.barrier(server_tag, 'start_%d' % num_streams,
- 600).rendevous(*all)
+ 600).rendezvous(*all)
# Stop the server when the client finishes
# Wait up to test_time + five minutes
self.job.barrier(server_tag, 'finish_%d' % num_streams,
- test_time+300).rendevous(*all)
+ test_time+300).rendezvous(*all)
finally:
self.server_stop()
@@ -81,12 +81,12 @@
# Wait up to ten minutes for the server and client
# to reach this point
self.job.barrier(client_tag, 'start_%d' % num_streams,
- 600).rendevous(*all)
+ 600).rendezvous(*all)
self.client(server_ip, test_time, num_streams)
# Wait up to 5 minutes for the server to also reach this point
self.job.barrier(client_tag, 'finish_%d' % num_streams,
- 300).rendevous(*all)
+ 300).rendezvous(*all)
else:
raise error.TestError('invalid role specified')
diff --git a/client/tests/netpipe/netpipe.py b/client/tests/netpipe/netpipe.py
index c01cb9c..5dd67e8 100644
--- a/client/tests/netpipe/netpipe.py
+++ b/client/tests/netpipe/netpipe.py
@@ -51,19 +51,19 @@
if role == 'server':
# Wait up to ten minutes for both to reach this point.
- self.job.barrier(server_tag, 'start', 600).rendevous(*all)
+ self.job.barrier(server_tag, 'start', 600).rendezvous(*all)
self.server_start(args)
# Both the client and server should be closed so just to make
# sure they are both at the same point wait at most five minutes.
- self.job.barrier(server_tag, 'stop', 300).rendevous(*all)
+ self.job.barrier(server_tag, 'stop', 300).rendezvous(*all)
elif role == 'client':
# Wait up to ten minutes for the server to start
- self.job.barrier(client_tag, 'start', 600).rendevous(*all)
+ self.job.barrier(client_tag, 'start', 600).rendezvous(*all)
# Sleep 10 seconds to make sure the server is started
time.sleep(10)
self.client(server_ip, args)
# Wait up to five minutes for the server to also reach this point
- self.job.barrier(client_tag, 'stop', 300).rendevous(*all)
+ self.job.barrier(client_tag, 'stop', 300).rendezvous(*all)
else:
raise error.TestError('invalid role specified')