Skip to content

Commit

Permalink
chore: Disable failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
theduke committed Mar 30, 2023
1 parent 9044a45 commit 1b4aabf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration/cli/tests/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,10 @@ fn test_wasmer_create_exe_pirita_works() -> anyhow::Result<()> {
Ok(())
}

// FIXME: Re-enable. See https://github.com/wasmerio/wasmer/issues/3717
#[cfg(feature = "webc_runner")]
#[test]
#[ignore]
fn test_wasmer_run_pirita_works() -> anyhow::Result<()> {
let temp_dir = tempfile::TempDir::new()?;
let python_wasmer_path = temp_dir.path().join("python.wasmer");
Expand Down
3 changes: 3 additions & 0 deletions tests/integration/cli/tests/run_unstable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,14 @@ mod webc_on_disk {
assert.success().stdout(contains("Hello, World!"));
}

// FIXME: disabled due to failing test - must be reenabled
// See https://github.com/wasmerio/wasmer/issues/3717
#[test]
#[cfg_attr(
all(target_env = "musl", target_os = "linux"),
ignore = "wasmer run-unstable segfaults on musl"
)]
#[ignore]
fn wasi_runner_with_mounted_directories_and_webc_volumes() {
let temp = TempDir::new().unwrap();
std::fs::write(temp.path().join("main.py"), "print('Hello, World!')").unwrap();
Expand Down

0 comments on commit 1b4aabf

Please sign in to comment.