Configure whether to allow a test to pass if it does not return `Err(OutOfMemory)` when a synthetic OOM was injected (perhaps because it is exercising logic that is robust to OOM). The default is `false`.
(&mut self, allow: bool)
| 289 | /// |
| 290 | /// The default is `false`. |
| 291 | pub fn allow_missed_oom_errors(&mut self, allow: bool) -> &mut Self { |
| 292 | self.allow_missed_oom_errors = allow; |
| 293 | self |
| 294 | } |
| 295 | |
| 296 | /// Configure the seed for the RNG used in `fuzz` mode. |
| 297 | /// |
no outgoing calls