Disable unsupported tests
Unclear why this needs to be done manually and is not done by the existing Trusty patches.
This commit is contained in:
parent
d633d8e074
commit
22fea97c9d
4 changed files with 8 additions and 4 deletions
|
@ -14,7 +14,8 @@
|
||||||
target_os = "emscripten",
|
target_os = "emscripten",
|
||||||
target_os = "wasi",
|
target_os = "wasi",
|
||||||
target_env = "sgx",
|
target_env = "sgx",
|
||||||
target_os = "xous"
|
target_os = "xous",
|
||||||
|
target_os = "trusty",
|
||||||
))
|
))
|
||||||
))]
|
))]
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
not(any(
|
not(any(
|
||||||
target_os = "emscripten",
|
target_os = "emscripten",
|
||||||
all(target_os = "wasi", target_env = "p1"),
|
all(target_os = "wasi", target_env = "p1"),
|
||||||
target_os = "xous"
|
target_os = "xous",
|
||||||
|
target_os = "trusty",
|
||||||
))
|
))
|
||||||
))]
|
))]
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
target_os = "emscripten",
|
target_os = "emscripten",
|
||||||
all(target_os = "wasi", target_env = "p1"),
|
all(target_os = "wasi", target_env = "p1"),
|
||||||
target_env = "sgx",
|
target_env = "sgx",
|
||||||
target_os = "xous"
|
target_os = "xous",
|
||||||
|
target_os = "trusty",
|
||||||
))
|
))
|
||||||
))]
|
))]
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
|
@ -154,7 +154,8 @@
|
||||||
target_os = "emscripten",
|
target_os = "emscripten",
|
||||||
target_os = "wasi",
|
target_os = "wasi",
|
||||||
target_env = "sgx",
|
target_env = "sgx",
|
||||||
target_os = "xous"
|
target_os = "xous",
|
||||||
|
target_os = "trusty",
|
||||||
))
|
))
|
||||||
))]
|
))]
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue