Currently, `test_random` uses the following code for generating the number of iterations: ```rust const N_ITER: usize = 1 << 32; ``` This overflows if `usize` has 32-bits or less. A trivial fix is: ```rust const N_ITER: u64 = 1 << 32; ```