(self)
| 131 | super().setup_httpd(setup=MDTestSetup(env=self)) |
| 132 | |
| 133 | def set_store_dir_default(self): |
| 134 | dirpath = "md" |
| 135 | if self.httpd_is_at_least("2.5.0"): |
| 136 | dirpath = os.path.join("state", dirpath) |
| 137 | self.set_store_dir(dirpath) |
| 138 | |
| 139 | def set_store_dir(self, dirpath): |
| 140 | self._store_dir = os.path.join(self.server_dir, dirpath) |