diff --git a/tests/integration/cli/tests/run_unstable.rs b/tests/integration/cli/tests/run_unstable.rs index 4e390b243e0..6e8d424b735 100644 --- a/tests/integration/cli/tests/run_unstable.rs +++ b/tests/integration/cli/tests/run_unstable.rs @@ -366,6 +366,10 @@ mod remote_webc { all(target_env = "musl", target_os = "linux"), ignore = "wasmer run-unstable segfaults on musl" )] + #[cfg_attr( + windows, + ignore = "TODO(Michael-F-Bryan): Figure out why WasiFs::get_inode_at_path_inner() returns Errno::notcapable on Windows" + )] fn bash_using_coreutils() { let assert = wasmer_run_unstable() .arg("sharrattj/bash") diff --git a/tests/integration/cli/tests/snapshot.rs b/tests/integration/cli/tests/snapshot.rs index 790e4861173..ea3e71d1a1b 100644 --- a/tests/integration/cli/tests/snapshot.rs +++ b/tests/integration/cli/tests/snapshot.rs @@ -698,11 +698,11 @@ fn test_snapshot_unix_pipe() { } #[test] -#[cfg_attr( - any(target_env = "musl", target_os = "macos", target_os = "windows"), - ignore -)] -#[ignore = "FIXME(john-sharratt): Broken due to an issue with polling"] +// #[cfg_attr( +// any(target_env = "musl", target_os = "macos", target_os = "windows"), +// ignore +// )] +#[ignore = "TODO(Michael-F-Bryan): figure out why the request body doesn't get sent fully on Linux"] fn test_snapshot_web_server() { let name: &str = function!(); let port = 7777; @@ -716,7 +716,8 @@ fn test_snapshot_web_server() { let script = format!( r#" cat /public/main.js | wc -c > /public/main.js.size -rm -f /cfg/config.toml +rm -f /cfg/ +cd /public /bin/webserver --log-level warn --root /public --port {}"#, port );