diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-08-15 15:58:27 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-08-18 02:58:55 +0200 |
commit | 5f3301759e33a498803748f30e57712ac67a9965 (patch) | |
tree | 727ac646c7f8ae26af852659e56a1a92b26a3b3e /source4/selftest | |
parent | 97b2f30b9e8b8440d12dedf4fdf0309edf6f2036 (diff) | |
download | samba-5f3301759e33a498803748f30e57712ac67a9965.tar.gz samba-5f3301759e33a498803748f30e57712ac67a9965.tar.bz2 samba-5f3301759e33a498803748f30e57712ac67a9965.zip |
s4-test: use dbcheck on more of our selftest databases
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Thu Aug 18 02:58:55 CEST 2011 on sn-devel-104
Diffstat (limited to 'source4/selftest')
-rwxr-xr-x | source4/selftest/tests.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index 0ef59b2148..2a7d3f097a 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -467,5 +467,6 @@ plantestsuite("samba4.blackbox.provision-backend.py", "none", ["PYTHON=%s" % pyt # Test renaming the DC plantestsuite("samba4.blackbox.renamedc.sh", "none", ["PYTHON=%s" % python, os.path.join(bbdir, "renamedc.sh"), '$PREFIX/provision']) -# check the database is all OK. PLEASE LEAVE THIS AS THE LAST TEST -plantestsuite("samba4.blackbox.dbcheck.sh", "dc:local", ["PYTHON=%s" % python, os.path.join(bbdir, "dbcheck.sh"), '$PREFIX/provision', configuration]) +# check the databases are all OK. PLEASE LEAVE THIS AS THE LAST TEST +for env in ["dc", "fl2000dc", "fl2003dc", "fl2008r2dc"]: + plantestsuite("samba4.blackbox.dbcheck(%s)" % env, env + ":local" , ["PYTHON=%s" % python, os.path.join(bbdir, "dbcheck.sh"), '$PREFIX/provision', configuration]) |