summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2016-09-08 15:45:56 +1200
committerKarolin Seeger <kseeger@samba.org>2016-10-20 10:45:28 +0200
commit53f94de679f9a74a97af6b1ef06d06b78ba18854 (patch)
tree5fc487f9a1c087c5fb6268e29a8ffd9e53ad0beb /source4
parentd2094509c160b3d8b1b5b8dfc3e09d80478c237b (diff)
downloadsamba-53f94de679f9a74a97af6b1ef06d06b78ba18854.tar.gz
tests: Skip a test for reveal internals for passing Windows
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> BUG: https://bugzilla.samba.org/show_bug.cgi?id=12382 (cherry picked from commit 4a264f6460941e6cc741c3dfd1bba72a076a8267)
Diffstat (limited to 'source4')
-rw-r--r--source4/dsdb/tests/python/linked_attributes.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/dsdb/tests/python/linked_attributes.py b/source4/dsdb/tests/python/linked_attributes.py
index 225ee47473e..9813ea0530a 100644
--- a/source4/dsdb/tests/python/linked_attributes.py
+++ b/source4/dsdb/tests/python/linked_attributes.py
@@ -303,7 +303,7 @@ class LATests(samba.tests.TestCase):
self.remove_linked_attribute(g2, u1)
self.assert_forward_links(g2, [])
- def test_la_links_delete_link_reveal(self):
+ def _test_la_links_delete_link_reveal(self):
u1, u2 = self.add_objects(2, 'user', 'u_del_link_reveal')
g1, g2 = self.add_objects(2, 'group', 'g_del_link_reveal')
@@ -318,6 +318,11 @@ class LATests(samba.tests.TestCase):
show_deactivated_link=0,
reveal_internals=0
)
+ def test_la_links_delete_link_reveal(self):
+ if opts.no_reveal_internals:
+ print 'skipping because --no-reveal-internals'
+ return
+ self._test_la_links_delete_link_reveal()
def test_la_links_delete_user(self):
u1, u2 = self.add_objects(2, 'user', 'u_del_user')