|
@@ -278,7 +278,6 @@ class MockBob(BoB):
|
|
|
|
|
|
def start_simple(self, name):
|
|
|
procmap = { 'b10-xfrout': self.start_xfrout,
|
|
|
- 'b10-xfrin': self.start_xfrin,
|
|
|
'b10-zonemgr': self.start_zonemgr,
|
|
|
'b10-stats': self.start_stats,
|
|
|
'b10-stats-httpd': self.start_stats_httpd,
|
|
@@ -346,9 +345,7 @@ class MockBob(BoB):
|
|
|
'b10-cmdctl': self.stop_cmdctl }
|
|
|
procmap[process]()
|
|
|
|
|
|
- # We don't really use all of these stop_ methods. But it might turn out
|
|
|
- # someone would add some stop_ method to BoB and we want that one overriden
|
|
|
- # in case he forgets to update the tests.
|
|
|
+ # Some functions to pretend we stop processes, use by stop_process
|
|
|
def stop_msgq(self):
|
|
|
if self.msgq:
|
|
|
del self.processes[2]
|