@@ -155,6 +155,7 @@ impl WasmerCreateObj {
155
155
}
156
156
157
157
#[ test]
158
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
158
159
fn test_create_exe_with_pirita_works_1 ( ) {
159
160
let tempdir = TempDir :: new ( ) . unwrap ( ) ;
160
161
let path = tempdir. path ( ) ;
@@ -206,6 +207,7 @@ fn test_create_exe_with_pirita_works_1() {
206
207
}
207
208
208
209
#[ test]
210
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
209
211
fn test_create_exe_with_precompiled_works_1 ( ) {
210
212
use object:: { Object , ObjectSymbol } ;
211
213
@@ -265,6 +267,7 @@ fn test_create_exe_with_precompiled_works_1() {
265
267
// Also ignored on macOS because it's flaky
266
268
#[ cfg_attr( any( target_os = "windows" , target_os = "macos" ) , ignore) ]
267
269
#[ test]
270
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
268
271
fn create_exe_works ( ) -> anyhow:: Result < ( ) > {
269
272
let temp_dir = tempfile:: tempdir ( ) ?;
270
273
let operating_dir: PathBuf = temp_dir. path ( ) . to_owned ( ) ;
@@ -302,10 +305,11 @@ fn create_exe_works() -> anyhow::Result<()> {
302
305
// Ignored because of -lunwind linker issue on Windows
303
306
// see https://github.com/wasmerio/wasmer/issues/3459
304
307
#[ cfg_attr( target_os = "windows" , ignore) ]
305
- // #[test]
308
+ #[ test]
306
309
// FIXME: Fix an re-enable test
307
310
// See https://github.com/wasmerio/wasmer/issues/3615
308
311
#[ allow( dead_code) ]
312
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
309
313
fn create_exe_works_multi_command_args_handling ( ) -> anyhow:: Result < ( ) > {
310
314
let temp_dir = tempfile:: tempdir ( ) ?;
311
315
let operating_dir: PathBuf = temp_dir. path ( ) . to_owned ( ) ;
@@ -373,6 +377,7 @@ fn create_exe_works_multi_command_args_handling() -> anyhow::Result<()> {
373
377
// see https://github.com/wasmerio/wasmer/issues/3459
374
378
#[ cfg_attr( target_os = "windows" , ignore) ]
375
379
#[ test]
380
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
376
381
fn create_exe_works_underscore_module_name ( ) -> anyhow:: Result < ( ) > {
377
382
let temp_dir = tempfile:: tempdir ( ) ?;
378
383
let operating_dir: PathBuf = temp_dir. path ( ) . to_owned ( ) ;
@@ -439,6 +444,7 @@ fn create_exe_works_underscore_module_name() -> anyhow::Result<()> {
439
444
// see https://github.com/wasmerio/wasmer/issues/3459
440
445
#[ cfg_attr( target_os = "windows" , ignore) ]
441
446
#[ test]
447
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
442
448
fn create_exe_works_multi_command ( ) -> anyhow:: Result < ( ) > {
443
449
let temp_dir = tempfile:: tempdir ( ) ?;
444
450
let operating_dir: PathBuf = temp_dir. path ( ) . to_owned ( ) ;
@@ -496,6 +502,7 @@ fn create_exe_works_multi_command() -> anyhow::Result<()> {
496
502
// see https://github.com/wasmerio/wasmer/issues/3459
497
503
#[ cfg_attr( target_os = "windows" , ignore) ]
498
504
#[ test]
505
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
499
506
fn create_exe_works_with_file ( ) -> anyhow:: Result < ( ) > {
500
507
let temp_dir = tempfile:: tempdir ( ) ?;
501
508
let operating_dir: PathBuf = temp_dir. path ( ) . to_owned ( ) ;
@@ -585,6 +592,7 @@ fn create_obj(args: Vec<String>) -> anyhow::Result<()> {
585
592
}
586
593
587
594
#[ test]
595
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
588
596
fn create_obj_default ( ) -> anyhow:: Result < ( ) > {
589
597
create_obj ( vec ! [ ] )
590
598
}
@@ -674,6 +682,7 @@ fn create_exe_with_object_input(args: Vec<String>) -> anyhow::Result<()> {
674
682
// see https://github.com/wasmerio/wasmer/issues/3459
675
683
#[ cfg_attr( target_os = "windows" , ignore) ]
676
684
#[ test]
685
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
677
686
fn create_exe_with_object_input_default ( ) -> anyhow:: Result < ( ) > {
678
687
create_exe_with_object_input ( vec ! [ ] )
679
688
}
@@ -682,6 +691,7 @@ fn create_exe_with_object_input_default() -> anyhow::Result<()> {
682
691
/// Tracked in https://github.com/wasmerio/wasmer/issues/3271
683
692
#[ cfg_attr( any( target_env = "musl" , target_os = "windows" ) , ignore) ]
684
693
#[ test]
694
+ #[ ignore = "See https://github.com/wasmerio/wasmer/issues/4285" ]
685
695
fn test_wasmer_create_exe_pirita_works ( ) {
686
696
// let temp_dir = Path::new("debug");
687
697
// std::fs::create_dir_all(&temp_dir);
0 commit comments