Skip to content

Commit

Permalink
Re-enable assert_sync test for no_std, keeping todo
Browse files Browse the repository at this point in the history
  • Loading branch information
iamyulong committed Nov 21, 2022
1 parent 35043fe commit 1a7a7f9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions radix-engine/src/engine/interpreters/scrypto_interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,9 @@ mod tests {
// RFC 2056
fn assert_all() {
assert_send::<ScryptoInterpreter<DefaultWasmEngine>>();
// TODO: make sure engine is multi-thread safe!
// assert_sync::<ScryptoInterpreter<DefaultWasmEngine>>();
// TODO: make sure engine is indeed multi-thread safe!
#[cfg(not(feature = "alloc"))]
assert_sync::<ScryptoInterpreter<DefaultWasmEngine>>();
}
};
}

0 comments on commit 1a7a7f9

Please sign in to comment.