File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -460,6 +460,9 @@ fn test_fully_qualified_contract_call(
460
460
}
461
461
}
462
462
463
+ // Test not valid for clarity-wasm runtime
464
+ // Contracts would error in the static analysis pass.
465
+ #[ cfg( not( feature = "clarity-wasm" ) ) ]
463
466
#[ apply( test_epochs) ]
464
467
fn test_simple_naming_system ( epoch : StacksEpochId , mut env_factory : MemoryEnvironmentGenerator ) {
465
468
let mut owned_env = env_factory. get_env ( epoch) ;
Original file line number Diff line number Diff line change @@ -702,6 +702,9 @@ fn test_reentrant_dynamic_dispatch(
702
702
}
703
703
}
704
704
705
+ // Test not valid for clarity-wasm runtime
706
+ // Contracts would error in the static analysis pass.
707
+ #[ cfg( not( feature = "clarity-wasm" ) ) ]
705
708
#[ apply( test_clarity_versions) ]
706
709
fn test_readwrite_dynamic_dispatch (
707
710
version : ClarityVersion ,
@@ -759,6 +762,9 @@ fn test_readwrite_dynamic_dispatch(
759
762
}
760
763
}
761
764
765
+ // Test not valid for clarity-wasm runtime
766
+ // Contracts would error in the static analysis pass.
767
+ #[ cfg( not( feature = "clarity-wasm" ) ) ]
762
768
#[ apply( test_clarity_versions) ]
763
769
fn test_readwrite_violation_dynamic_dispatch (
764
770
version : ClarityVersion ,
You can’t perform that action at this time.
0 commit comments