summaryrefslogtreecommitdiff
path: root/ctdb/tests/takeover/simulation/ip_groups4.py
diff options
context:
space:
mode:
authorMartin Schwenke <martin@meltin.net>2016-12-11 09:09:44 +1100
committerAmitay Isaacs <amitay@samba.org>2016-12-19 07:58:45 +0100
commit59dc07ee4ab6350a2736a1bd47ba26be7fae67e2 (patch)
tree868b81a884df0c90625680bb22763af96677b49a /ctdb/tests/takeover/simulation/ip_groups4.py
parent641b69da80f66e399c6ad78183067ccb4a76e02e (diff)
downloadsamba-59dc07ee4ab6350a2736a1bd47ba26be7fae67e2.tar.gz
ctdb-tests: Remove the python LCP2 simulation
It isn't used anywhere and doesn't contain some of the optimisations that have since gone into the C code. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com> Autobuild-User(master): Amitay Isaacs <amitay@samba.org> Autobuild-Date(master): Mon Dec 19 07:58:45 CET 2016 on sn-devel-144
Diffstat (limited to 'ctdb/tests/takeover/simulation/ip_groups4.py')
-rwxr-xr-xctdb/tests/takeover/simulation/ip_groups4.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/ctdb/tests/takeover/simulation/ip_groups4.py b/ctdb/tests/takeover/simulation/ip_groups4.py
deleted file mode 100755
index fdcef7f0a69..00000000000
--- a/ctdb/tests/takeover/simulation/ip_groups4.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env python
-
-# 2 IP groups, across 2 nodes, with each group on different
-# interfaces. 4 addresses per group. A nice little canonical 2 node
-# configuration.
-
-from ctdb_takeover import Cluster, Node, process_args
-
-process_args()
-
-addresses1 = ['192.168.1.%d' % n for n in range(1, 5)]
-addresses2 = ['192.168.2.%d' % n for n in range(1, 5)]
-
-# Try detecting imbalance with square root of number of nodes? Or
-# just with a parameter indicating how unbalanced you're willing to
-# accept...
-
-c = Cluster()
-
-for i in range(2):
- c.add_node(Node([addresses1, addresses2]))
-
-c.recover()
-
-c.random_iterations()