You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let backend = $crate::emtests::_common::get_backend().expect("Please set one of `WASMER_TEST_CLIF`, `WASMER_TEST_LLVM`, or `WASMER_TEST_SINGELPASS` to `1`.");
43
+
let backend = $crate::emtests::_common::get_backend().expect("Please set one of `WASMER_TEST_CRANELIFT`, `WASMER_TEST_LLVM`, or `WASMER_TEST_SINGELPASS` to `1`.");
44
44
let compiler = wasmer_runtime::compiler_for_backend(backend).expect("The desired compiler was not found!");
45
45
46
46
let module = wasmer_runtime::compile_with_config_with(&wasm_bytes[..],Default::default(),&*compiler).expect("WASM can't be compiled");
use wasmer_wasi::{generate_import_object_for_version, get_wasi_version};
38
38
39
39
let wasm_bytes = include_bytes!($file);
40
-
let backend = $crate::wasitests::_common::get_backend().expect("Please set one of `WASMER_TEST_CLIF`, `WASMER_TEST_LLVM`, or `WASMER_TEST_SINGELPASS` to `1`.");
40
+
let backend = $crate::wasitests::_common::get_backend().expect("Please set one of `WASMER_TEST_CRANELIFT`, `WASMER_TEST_LLVM`, or `WASMER_TEST_SINGELPASS` to `1`.");
41
41
let compiler = wasmer_runtime::compiler_for_backend(backend).expect("The desired compiler was not found!");
42
42
43
43
let module = wasmer_runtime::compile_with_config_with(&wasm_bytes[..],Default::default(),&*compiler).expect("WASM can't be compiled");
0 commit comments