Generates a random value for config `param`
(&mut self, param: &RangeInclusive<usize>)
| 1273 | |
| 1274 | /// Generates a random value for config `param` |
| 1275 | fn param(&mut self, param: &RangeInclusive<usize>) -> Result<usize> { |
| 1276 | Ok(self.u.int_in_range(param.clone())?) |
| 1277 | } |
| 1278 | |
| 1279 | fn system_callconv(&mut self) -> CallConv { |
| 1280 | // TODO: This currently only runs on linux, so this is the only choice |
no test coverage detected