File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
stackslib/src/clarity_vm/tests Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -112,6 +112,9 @@ fn new_block<'a, 'b>(
112
112
block
113
113
}
114
114
115
+ // Test not valid for clarity-wasm runtime
116
+ // Contracts would error in the static analysis pass.
117
+ #[ cfg( not( feature = "clarity-wasm" ) ) ]
115
118
#[ apply( test_clarity_versions) ]
116
119
fn test_simple_token_system ( #[ case] version : ClarityVersion , #[ case] epoch : StacksEpochId ) {
117
120
if epoch < StacksEpochId :: Epoch2_05 || version > ClarityVersion :: Clarity2 {
@@ -464,6 +467,9 @@ where
464
467
f ( & mut owned_env, version)
465
468
}
466
469
470
+ // Test not valid for clarity-wasm runtime
471
+ // Contracts would error in the static analysis pass.
472
+ #[ cfg( not( feature = "clarity-wasm" ) ) ]
467
473
#[ apply( test_clarity_versions) ]
468
474
fn test_simple_naming_system ( #[ case] version : ClarityVersion , #[ case] epoch : StacksEpochId ) {
469
475
with_versioned_memory_environment ( inner_test_simple_naming_system, version, false ) ;
You can’t perform that action at this time.
0 commit comments