We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c20ddd commit dde17cfCopy full SHA for dde17cf
library/test/src/lib.rs
@@ -594,7 +594,9 @@ pub fn run_test(
594
// If the platform is single-threaded we're just going to run
595
// the test synchronously, regardless of the concurrency
596
// level.
597
- let supports_threads = !cfg!(target_os = "emscripten") && !cfg!(target_family = "wasm");
+ let supports_threads = !cfg!(target_os = "emscripten")
598
+ && !cfg!(target_family = "wasm")
599
+ && !cfg!(target_os = "zkvm");
600
if supports_threads {
601
let cfg = thread::Builder::new().name(name.as_slice().to_owned());
602
let mut runtest = Arc::new(Mutex::new(Some(runtest)));
0 commit comments