diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-08-07 12:30:33 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-08-07 14:22:42 +0200 |
commit | bc702a394ddd1912c621054acbc75f29166fd17a (patch) | |
tree | 10543a6c75de0f4969476db03c94a2ad119dc5df /source4/dsdb | |
parent | 8243272fa071dadd62199f84d7caf608d90ea6ed (diff) | |
download | samba-bc702a394ddd1912c621054acbc75f29166fd17a.tar.gz samba-bc702a394ddd1912c621054acbc75f29166fd17a.tar.bz2 samba-bc702a394ddd1912c621054acbc75f29166fd17a.zip |
s4:ldap.py - comment a test part which fails with another error code on Windows
Diffstat (limited to 'source4/dsdb')
-rwxr-xr-x | source4/dsdb/tests/python/ldap.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/source4/dsdb/tests/python/ldap.py b/source4/dsdb/tests/python/ldap.py index 7cf02ea97d..864b7fa6dc 100755 --- a/source4/dsdb/tests/python/ldap.py +++ b/source4/dsdb/tests/python/ldap.py @@ -1695,11 +1695,12 @@ objectClass: container except LdbError, (num, _): self.assertEquals(num, ERR_UNWILLING_TO_PERFORM) - try: - ldb.delete("cn=Enterprise Configuration,cn=Partitions," + self.configuration_dn) - self.fail() - except LdbError, (num, _): - self.assertEquals(num, ERR_UNWILLING_TO_PERFORM) +# TODO: This fails with LDB_ERR_NOT_ALLOWED_ON_NON_LEAF on Windows +# try: +# ldb.delete("cn=Enterprise Configuration,cn=Partitions," + self.configuration_dn) +# self.fail() +# except LdbError, (num, _): +# self.assertEquals(num, ERR_UNWILLING_TO_PERFORM) # Performs some "systemFlags" testing |