2025-06-11 10:43:59 -07:00
|
|
|
use rayon_core::ThreadPoolBuilder;
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[cfg_attr(any(target_os = "emscripten", target_family = "wasm"), ignore)]
|
|
|
|
|
fn init_zero_threads() {
|
2025-06-11 11:12:32 -07:00
|
|
|
ThreadPoolBuilder::new().num_threads(0).build_global().unwrap();
|
2025-06-11 10:43:59 -07:00
|
|
|
}
|