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/env/tests.rs | |
| parent | 3b11c82a3d625a01dd5f7b91785374103eb41589 (diff) | |
| download | rust-87f17f3ccb69e9827562522ae1a38f84d2ba998a.tar.gz rust-87f17f3ccb69e9827562522ae1a38f84d2ba998a.zip | |
Fix std tests for wasm32-wasip2 target
Diffstat (limited to 'library/std/src/env/tests.rs')
| -rw-r--r-- | library/std/src/env/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/env/tests.rs b/library/std/src/env/tests.rs index fc7aee29733..d0217261068 100644 --- a/library/std/src/env/tests.rs +++ b/library/std/src/env/tests.rs @@ -1,7 +1,7 @@ use super::*; #[test] -#[cfg_attr(any(target_os = "emscripten", target_env = "sgx"), ignore)] +#[cfg_attr(any(target_os = "emscripten", target_os = "wasi", target_env = "sgx"), ignore)] fn test_self_exe_path() { let path = current_exe(); assert!(path.is_ok()); |
