diff options
author | Andrew Bartlett <abartlet@samba.org> | 2014-02-27 15:17:35 +1300 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2014-07-15 12:46:16 +0200 |
commit | 38c5f5b49e1abcdf3e4d9ef2160de3f9069497f1 (patch) | |
tree | 78cf151d7928b87a37b00ada8ac3e0b627dd7d07 /testprogs/blackbox/dbcheck.sh | |
parent | e4bf67aed49b16610f517f871576bb644312c9c1 (diff) | |
download | samba-38c5f5b49e1abcdf3e4d9ef2160de3f9069497f1.tar.gz |
dbcheck: Ensure dbcheck can operate with --attrs set
This also includes a test to ensure we do not regress on this point.
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
(cherry picked from commit f596dc94e1ab839f13e2a9edbcec774635b5c211)
Diffstat (limited to 'testprogs/blackbox/dbcheck.sh')
-rwxr-xr-x | testprogs/blackbox/dbcheck.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testprogs/blackbox/dbcheck.sh b/testprogs/blackbox/dbcheck.sh index c1e8aafd36f..66628b05190 100755 --- a/testprogs/blackbox/dbcheck.sh +++ b/testprogs/blackbox/dbcheck.sh @@ -26,12 +26,17 @@ reindex() { $BINDIR/samba-tool dbcheck --reindex } +fixed_attrs() { + $BINDIR/samba-tool dbcheck --attrs=cn +} + force_modules() { $BINDIR/samba-tool dbcheck --force-modules } testit "dbcheck" dbcheck testit "reindex" reindex +testit "fixed_attrs" fixed_attrs testit "force_modules" force_modules exit $failed |