#2073: Adds a warning (about turning off undo, rather than filling with bogus data), but this is only seen by developers, and at least gives a chance to cancel; probably not worth a special class just to provide proper message

svn: r13233
This commit is contained in:
Doug Blank 2009-09-23 00:40:14 +00:00
parent 52d573eba8
commit 9e66f354df

View File

@ -55,7 +55,7 @@ import LdsUtils
#
#
#-------------------------------------------------------------------------
class TestcaseGenerator(Tool.Tool):
class TestcaseGenerator(Tool.BatchTool):
NUMERIC = 0
FIRSTNAME = 1
FIRSTNAME_FEMALE = 2
@ -69,7 +69,10 @@ class TestcaseGenerator(Tool.Tool):
if dbstate.db.readonly:
return
Tool.Tool.__init__(self, dbstate, options_class, name)
Tool.BatchTool.__init__(self, dbstate, options_class, name)
if self.fail:
return
self.person_count = 0
self.persons_todo = []