about summary refs log tree commit diff
path: root/library/std/tests
diff options
context:
space:
mode:
authorMads Marquart <mads@marquart.dk>2025-09-19 09:17:20 +0200
committerMads Marquart <mads@marquart.dk>2025-09-19 13:55:03 +0200
commit37be93497e5318fee712dabb70631f9676f07701 (patch)
treed62ec65f68c17b296bd78773e2f55700994aa148 /library/std/tests
parentb30c1b53f3fbd79b94f40b1d000067e1c49ea1d2 (diff)
downloadrust-37be93497e5318fee712dabb70631f9676f07701.tar.gz
rust-37be93497e5318fee712dabb70631f9676f07701.zip
Fix test suite in iOS/tvOS/watchOS/visionOS simulator
Diffstat (limited to 'library/std/tests')
-rw-r--r--library/std/tests/process_spawning.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/tests/process_spawning.rs b/library/std/tests/process_spawning.rs
index 43b45cb2d2b..93f73ccad3e 100644
--- a/library/std/tests/process_spawning.rs
+++ b/library/std/tests/process_spawning.rs
@@ -7,6 +7,7 @@ mod common;
 #[test]
 // Process spawning not supported by Miri, Emscripten and wasi
 #[cfg_attr(any(miri, target_os = "emscripten", target_os = "wasi"), ignore)]
+#[cfg_attr(any(target_os = "tvos", target_os = "watchos"), ignore = "fork is prohibited")]
 fn issue_15149() {
     // If we're the parent, copy our own binary to a new directory.
     let my_path = env::current_exe().unwrap();