diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-07-29 02:10:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-29 02:10:58 +0200 |
| commit | f6f214233fc8aebf46a747d8fcfbff04d96112be (patch) | |
| tree | a0d77ed9d7a1e3784e3a208cef1c6313e8a6c974 /src | |
| parent | 7f2c3e1723077c6056cc4bdf9b20f789261d1089 (diff) | |
| parent | 173cbf113428aede934c508ca22d0b4f876acead (diff) | |
Rollup merge of #63086 - BaoshanPang:testcases, r=nagisa
Ignore test cases that are not supported by vxWorks bypass x86stdcall.rs for vxworks ignore wait-forked-but-failed-child.rs as there is no command 'ps' on vxWorks ignore process-sigpipe.rs as there is no 'sh' on vxWorks ignore core-run-destroy.rs as there is no 'cat' and 'sleep' on vxWorks
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/ui/core-run-destroy.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/process/process-sigpipe.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/wait-forked-but-failed-child.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/x86stdcall.rs | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/test/ui/core-run-destroy.rs b/src/test/ui/core-run-destroy.rs index 225b2ca8f4d..b3614bfd5b6 100644 --- a/src/test/ui/core-run-destroy.rs +++ b/src/test/ui/core-run-destroy.rs @@ -8,6 +8,7 @@ // ignore-cloudabi no processes // ignore-emscripten no processes // ignore-sgx no processes +// ignore-vxworks no 'cat' and 'sleep' // N.B., these tests kill child processes. Valgrind sees these children as leaking // memory, which makes for some *confusing* logs. That's why these are here diff --git a/src/test/ui/process/process-sigpipe.rs b/src/test/ui/process/process-sigpipe.rs index bf589096006..36303440ee9 100644 --- a/src/test/ui/process/process-sigpipe.rs +++ b/src/test/ui/process/process-sigpipe.rs @@ -14,6 +14,7 @@ // ignore-cloudabi no subprocesses support // ignore-emscripten no threads support +// ignore-vxworks no 'sh' use std::process; use std::thread; diff --git a/src/test/ui/wait-forked-but-failed-child.rs b/src/test/ui/wait-forked-but-failed-child.rs index 434361b40de..08b16c0e9ca 100644 --- a/src/test/ui/wait-forked-but-failed-child.rs +++ b/src/test/ui/wait-forked-but-failed-child.rs @@ -2,6 +2,7 @@ // ignore-cloudabi no processes // ignore-emscripten no processes // ignore-sgx no processes +// ignore-vxworks no 'ps' #![feature(rustc_private)] diff --git a/src/test/ui/x86stdcall.rs b/src/test/ui/x86stdcall.rs index fc67ccdc8c4..32a4df87fbe 100644 --- a/src/test/ui/x86stdcall.rs +++ b/src/test/ui/x86stdcall.rs @@ -32,5 +32,6 @@ pub fn main() { target_os = "macos", target_os = "netbsd", target_os = "openbsd", + target_os = "vxworks", target_os = "solaris"))] pub fn main() { } |
