Args: rng: random number generator test: test for which to create flags analysis_value: value returned by the analyzer. None if there is no corresponding analyzer to this fuzzer or the analysis phase is disabled
(self, rng, test, analysis_value)
| 169 | |
| 170 | class Fuzzer(object): |
| 171 | def create_flags_generator(self, rng, test, analysis_value): |
| 172 | """ |
| 173 | Args: |
| 174 | rng: random number generator |
| 175 | test: test for which to create flags |
| 176 | analysis_value: value returned by the analyzer. None if there is no |
| 177 | corresponding analyzer to this fuzzer or the analysis phase is disabled |
| 178 | """ |
| 179 | raise NotImplementedError() |
| 180 | |
| 181 | |
| 182 | # TODO(majeski): Allow multiple subtests to run at once. |