@@ -155,6 +155,7 @@ impl WasmerCreateObj {
155155}
156156
157157#[ test]
158+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
158159fn 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" ]
209211fn 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" ]
268271fn 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" ]
309313fn 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" ]
376381fn 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" ]
442448fn 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" ]
499506fn 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" ]
588596fn 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" ]
677686fn 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" ]
685695fn test_wasmer_create_exe_pirita_works ( ) {
686696 // let temp_dir = Path::new("debug");
687697 // std::fs::create_dir_all(&temp_dir);
0 commit comments