Skip to content

Commit bfeab2b

Browse files
authored
Merge pull request #4286 from wasmerio/ignore-create-exe
Ignore all create_exe tests as part of #4285
2 parents 448a557 + 722dd4c commit bfeab2b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tests/integration/cli/tests/create_exe.rs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ impl WasmerCreateObj {
155155
}
156156

157157
#[test]
158+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
158159
fn test_create_exe_with_pirita_works_1() {
159160
let tempdir = TempDir::new().unwrap();
160161
let path = tempdir.path();
@@ -206,6 +207,7 @@ fn test_create_exe_with_pirita_works_1() {
206207
}
207208

208209
#[test]
210+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
209211
fn test_create_exe_with_precompiled_works_1() {
210212
use object::{Object, ObjectSymbol};
211213

@@ -265,6 +267,7 @@ fn test_create_exe_with_precompiled_works_1() {
265267
// Also ignored on macOS because it's flaky
266268
#[cfg_attr(any(target_os = "windows", target_os = "macos"), ignore)]
267269
#[test]
270+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
268271
fn create_exe_works() -> anyhow::Result<()> {
269272
let temp_dir = tempfile::tempdir()?;
270273
let operating_dir: PathBuf = temp_dir.path().to_owned();
@@ -302,10 +305,11 @@ fn create_exe_works() -> anyhow::Result<()> {
302305
// Ignored because of -lunwind linker issue on Windows
303306
// see https://github.com/wasmerio/wasmer/issues/3459
304307
#[cfg_attr(target_os = "windows", ignore)]
305-
// #[test]
308+
#[test]
306309
// FIXME: Fix an re-enable test
307310
// See https://github.com/wasmerio/wasmer/issues/3615
308311
#[allow(dead_code)]
312+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
309313
fn create_exe_works_multi_command_args_handling() -> anyhow::Result<()> {
310314
let temp_dir = tempfile::tempdir()?;
311315
let operating_dir: PathBuf = temp_dir.path().to_owned();
@@ -373,6 +377,7 @@ fn create_exe_works_multi_command_args_handling() -> anyhow::Result<()> {
373377
// see https://github.com/wasmerio/wasmer/issues/3459
374378
#[cfg_attr(target_os = "windows", ignore)]
375379
#[test]
380+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
376381
fn create_exe_works_underscore_module_name() -> anyhow::Result<()> {
377382
let temp_dir = tempfile::tempdir()?;
378383
let operating_dir: PathBuf = temp_dir.path().to_owned();
@@ -439,6 +444,7 @@ fn create_exe_works_underscore_module_name() -> anyhow::Result<()> {
439444
// see https://github.com/wasmerio/wasmer/issues/3459
440445
#[cfg_attr(target_os = "windows", ignore)]
441446
#[test]
447+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
442448
fn create_exe_works_multi_command() -> anyhow::Result<()> {
443449
let temp_dir = tempfile::tempdir()?;
444450
let operating_dir: PathBuf = temp_dir.path().to_owned();
@@ -496,6 +502,7 @@ fn create_exe_works_multi_command() -> anyhow::Result<()> {
496502
// see https://github.com/wasmerio/wasmer/issues/3459
497503
#[cfg_attr(target_os = "windows", ignore)]
498504
#[test]
505+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
499506
fn create_exe_works_with_file() -> anyhow::Result<()> {
500507
let temp_dir = tempfile::tempdir()?;
501508
let operating_dir: PathBuf = temp_dir.path().to_owned();
@@ -585,6 +592,7 @@ fn create_obj(args: Vec<String>) -> anyhow::Result<()> {
585592
}
586593

587594
#[test]
595+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
588596
fn create_obj_default() -> anyhow::Result<()> {
589597
create_obj(vec![])
590598
}
@@ -674,6 +682,7 @@ fn create_exe_with_object_input(args: Vec<String>) -> anyhow::Result<()> {
674682
// see https://github.com/wasmerio/wasmer/issues/3459
675683
#[cfg_attr(target_os = "windows", ignore)]
676684
#[test]
685+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
677686
fn create_exe_with_object_input_default() -> anyhow::Result<()> {
678687
create_exe_with_object_input(vec![])
679688
}
@@ -682,6 +691,7 @@ fn create_exe_with_object_input_default() -> anyhow::Result<()> {
682691
/// Tracked in https://github.com/wasmerio/wasmer/issues/3271
683692
#[cfg_attr(any(target_env = "musl", target_os = "windows"), ignore)]
684693
#[test]
694+
#[ignore = "See https://github.com/wasmerio/wasmer/issues/4285"]
685695
fn test_wasmer_create_exe_pirita_works() {
686696
// let temp_dir = Path::new("debug");
687697
// std::fs::create_dir_all(&temp_dir);

0 commit comments

Comments
 (0)