We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dbf406 commit a40c3e5Copy full SHA for a40c3e5
tests/run-make/rustdoc-test-builder/rmake.rs
@@ -25,7 +25,10 @@ fn main() {
25
26
// Some targets (for example wasm) cannot execute doctests directly even with a runner,
27
// so only exercise the success path when the target can run on the host.
28
- if target().contains("wasm") || std::env::var_os("REMOTE_TEST_CLIENT").is_some() {
+ if target().contains("wasm")
29
+ || target().contains("sgx")
30
+ || std::env::var_os("REMOTE_TEST_CLIENT").is_some()
31
+ {
32
return;
33
}
34
0 commit comments