summaryrefslogtreecommitdiffstats
path: root/src/tests/intg/ds_openldap.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/intg/ds_openldap.py')
-rw-r--r--src/tests/intg/ds_openldap.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tests/intg/ds_openldap.py b/src/tests/intg/ds_openldap.py
index 2ece0cf18..ba7fde649 100644
--- a/src/tests/intg/ds_openldap.py
+++ b/src/tests/intg/ds_openldap.py
@@ -217,7 +217,8 @@ class DSOpenLDAP(DS):
break
except ldap.SERVER_DOWN:
pass
- if ++attempt > 30:
+ attempt = attempt + 1
+ if attempt > 30:
raise Exception("Failed to start slapd")
time.sleep(1)
@@ -270,7 +271,8 @@ class DSOpenLDAP(DS):
pid_file.close()
attempt = 0
while os.path.isfile(self.pid_path):
- if ++attempt > 30:
+ attempt = attempt + 1
+ if attempt > 30:
raise Exception("Failed to stop slapd")
time.sleep(1)
except IOError as e: