X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/a0ead2ba812735c2d1edd660b8608f8cb52cea5d..cca956b199841d754e8a78391d2e2c7efce4a3ee:/tests/dtest.py diff --git a/tests/dtest.py b/tests/dtest.py index 9439bce..be45435 100644 --- a/tests/dtest.py +++ b/tests/dtest.py @@ -271,16 +271,10 @@ def create_user(username="fred", password="fredpass"): "--user", "root", "edituser", username, "rights", "all"]) def rescan(c=None): - class rescan_monitor(disorder.monitor): - def rescanned(self): - return False + print " initiating rescan" if c is None: c = disorder.client() - m = rescan_monitor() - print " initiating rescan" - c.rescan() - print " waiting for rescan to complete" - m.run() + c.rescan('wait') print " rescan completed" def stop_daemon(): @@ -319,6 +313,7 @@ def run(module=None, report=True): if type(module) == str: module = __import__(module) name = module.__name__ + print "--- %s ---" % name # Open the error log global errs logfile = "%s.log" % name