Fixed WASI tests

This commit is contained in:
Syrus 2019-07-05 19:15:10 -07:00
parent e82ffe2457
commit b9237a9f00
2 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View File

@ -1621,6 +1621,7 @@ dependencies = [
"rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
"wasmer-clif-backend 0.5.3",
"wasmer-dev-utils 0.5.3",
"wasmer-llvm-backend 0.5.3",
"wasmer-runtime-core 0.5.3",
"wasmer-singlepass-backend 0.5.3",
"winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -19,6 +19,7 @@ log = "0.4.6"
byteorder = "1.3.1"
# hack to get tests to work
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.3", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.3", optional = true }
[target.'cfg(windows)'.dependencies]
winapi = "0.3"
@ -33,3 +34,4 @@ wasmer-dev-utils = { path = "../dev-utils", version = "0.5.3"}
[features]
clif = []
singlepass = ["wasmer-singlepass-backend"]
llvm = ["wasmer-llvm-backend"]