/ thirdparty / hyperfine / src / util / randomized_environment_offset.rs
randomized_environment_offset.rs
1  /// Returns a string with a random length. This value will be set as an environment
2  /// variable to account for offset effects. See [1] for more details.
3  ///
4  /// [1] Mytkowicz, 2009. Producing Wrong Data Without Doing Anything Obviously Wrong!.
5  ///     Sigplan Notices - SIGPLAN. 44. 265-276. 10.1145/1508284.1508275.
6  pub fn value() -> String {
7      "X".repeat(rand::random::<usize>() % 4096usize)
8  }