Bump stack size for chi_sq test

This commit is contained in:
Sam Tay
2024-01-30 19:45:45 -05:00
parent 3840c73d6e
commit 9e47ff8ba5

View File

@@ -295,7 +295,10 @@ mod tests {
use super::*;
#[test]
fn main_works() -> Result<(), Error> {
main()
fn main_works() {
let ten_mb = 10 * 1024 * 1024;
let builder = std::thread::Builder::new().stack_size(ten_mb);
let handler = builder.spawn(main).unwrap();
handler.join().unwrap().unwrap();
}
}