(self)
| 208 | |
| 209 | |
| 210 | def _create_parser(self): |
| 211 | parser = optparse.OptionParser() |
| 212 | parser.usage = '%prog [options] [tests]' |
| 213 | parser.description = """TESTS: %s""" % (TEST_MAP["default"]) |
| 214 | self._add_parser_default_options(parser) |
| 215 | self._add_parser_options(parser) |
| 216 | return parser |
| 217 | |
| 218 | def _add_parser_default_options(self, parser): |
| 219 | framework_choices = ('default', 'standard_runner', 'num_fuzzer') |