Some random fixes (#2936)

- Do not disable `std` feature in the integration tests
- `contracts-fixtures` test should only check for `riscv` build when the
feature is enabled
This commit is contained in:
Bastian Köcher
2024-01-16 01:19:17 +01:00
committed by GitHub
parent 0c166ae019
commit 1c2db1747e
2 changed files with 15 additions and 14 deletions
@@ -70,6 +70,7 @@ mod test {
fn out_dir_should_have_compiled_mocks() {
let out_dir: std::path::PathBuf = env!("OUT_DIR").into();
assert!(out_dir.join("dummy.wasm").exists());
#[cfg(feature = "riscv")]
assert!(out_dir.join("dummy.polkavm").exists());
}
}