diff options
| author | Nicola Krumschmidt <git@nkcom.de> | 2024-09-04 02:18:32 +0200 |
|---|---|---|
| committer | Nicola Krumschmidt <git@nkcom.de> | 2024-09-29 04:48:13 +0200 |
| commit | 87f17f3ccb69e9827562522ae1a38f84d2ba998a (patch) | |
| tree | d9ca03f59b55b85e2ea912e0bb6d6349305ff3b2 /library/std/src/sync/once.rs | |
| parent | 3b11c82a3d625a01dd5f7b91785374103eb41589 (diff) | |
Fix std tests for wasm32-wasip2 target
Diffstat (limited to 'library/std/src/sync/once.rs')
| -rw-r--r-- | library/std/src/sync/once.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/once.rs b/library/std/src/sync/once.rs index 5a1cd7d0b8b..993df9314fc 100644 --- a/library/std/src/sync/once.rs +++ b/library/std/src/sync/once.rs @@ -3,7 +3,7 @@ //! This primitive is meant to be used to run one-time initialization. An //! example use case would be for initializing an FFI library. -#[cfg(all(test, not(target_os = "emscripten")))] +#[cfg(all(test, not(any(target_os = "emscripten", target_os = "wasi"))))] mod tests; use crate::fmt; |
