diff options
author | Andrew Bartlett <abartlet@samba.org> | 2018-10-30 15:56:43 +1300 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2018-11-05 12:44:32 +0100 |
commit | d88db0d481d4434d6400035a225cbcb4cba11897 (patch) | |
tree | 352f0008356200b941109c55ea00f4c12fe94968 /testprogs | |
parent | 556b2c8ecb3af36cb7adbea060ea0db30a29af60 (diff) | |
download | samba-d88db0d481d4434d6400035a225cbcb4cba11897.tar.gz |
dsdb: Add comments explaining the limitations of our current backlink behaviour
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13418
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Tim Beale <timbeale@catalyst.net.nz>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Tue Oct 30 10:32:51 CET 2018 on sn-devel-144
(cherry picked from commit 852e1db12b0afa04a738c03bb2609c084fe96a7f)
Diffstat (limited to 'testprogs')
-rwxr-xr-x | testprogs/blackbox/test_primary_group.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testprogs/blackbox/test_primary_group.sh b/testprogs/blackbox/test_primary_group.sh index c2d803e1d15..0fbc287114a 100755 --- a/testprogs/blackbox/test_primary_group.sh +++ b/testprogs/blackbox/test_primary_group.sh @@ -75,11 +75,15 @@ testit "delete '$testgroup'" $VALGRIND $PYTHON $BINDIR/samba-tool group delete " # # As we don't support phantom objects and virtual backlinks -# the deletion of the user and group cause dangling links, +# the deletion of the user prior to the group causes dangling links, # which are detected like this: # # WARNING: target DN is deleted for member in object # +# Specifically, this happens because after the member link is +# deactivated the memberOf is gone, and so there is no way to find the +# now redundant forward link to clean it up. +# testit_expect_failure "dbcheck run3" $VALGRIND $PYTHON $BINDIR/samba-tool dbcheck --attrs=member --fix --yes || failed=`expr $failed + 1` testit "dbcheck run4" $VALGRIND $PYTHON $BINDIR/samba-tool dbcheck --attrs=member || failed=`expr $failed + 1` |