Skip to content

Commit 703f050

Browse files
authored
Merge branch 'feat/clarity-wasm-develop' into test/clarity-wasm-fix-intermediary-response-tests
2 parents 4a0d994 + a475f76 commit 703f050

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

clarity/src/vm/tests/contracts.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,9 @@ fn test_fully_qualified_contract_call(
460460
}
461461
}
462462

463+
// Test not valid for clarity-wasm runtime
464+
// Contracts would error in the static analysis pass.
465+
#[cfg(not(feature = "clarity-wasm"))]
463466
#[apply(test_epochs)]
464467
fn test_simple_naming_system(epoch: StacksEpochId, mut env_factory: MemoryEnvironmentGenerator) {
465468
let mut owned_env = env_factory.get_env(epoch);

clarity/src/vm/tests/traits.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,9 @@ fn test_reentrant_dynamic_dispatch(
702702
}
703703
}
704704

705+
// Test not valid for clarity-wasm runtime
706+
// Contracts would error in the static analysis pass.
707+
#[cfg(not(feature = "clarity-wasm"))]
705708
#[apply(test_clarity_versions)]
706709
fn test_readwrite_dynamic_dispatch(
707710
version: ClarityVersion,
@@ -759,6 +762,9 @@ fn test_readwrite_dynamic_dispatch(
759762
}
760763
}
761764

765+
// Test not valid for clarity-wasm runtime
766+
// Contracts would error in the static analysis pass.
767+
#[cfg(not(feature = "clarity-wasm"))]
762768
#[apply(test_clarity_versions)]
763769
fn test_readwrite_violation_dynamic_dispatch(
764770
version: ClarityVersion,

stackslib/src/clarity_vm/tests/forking.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ fn test_at_block_good(#[case] version: ClarityVersion, #[case] epoch: StacksEpoc
210210
);
211211
}
212212

213+
// Test not valid for clarity-wasm runtime
214+
// Contracts would error in the static analysis pass.
215+
#[cfg(not(feature = "clarity-wasm"))]
213216
#[apply(test_clarity_versions)]
214217
fn test_at_block_missing_defines(#[case] version: ClarityVersion, #[case] epoch: StacksEpochId) {
215218
fn initialize_1(owned_env: &mut OwnedEnvironment) {

0 commit comments

Comments
 (0)