diff options
| author | Baoshan Pang <baoshan.pang@windriver.com> | 2019-07-28 09:15:43 -0700 |
|---|---|---|
| committer | Baoshan Pang <baoshan.pang@windriver.com> | 2019-07-28 10:05:29 -0700 |
| commit | 173cbf113428aede934c508ca22d0b4f876acead (patch) | |
| tree | 07a31c588825fa7d351fb7649ba051bc39ed4a44 /src/test | |
| parent | 023525dbda35748a10713471b948974b68a1c2cc (diff) | |
| download | rust-173cbf113428aede934c508ca22d0b4f876acead.tar.gz rust-173cbf113428aede934c508ca22d0b4f876acead.zip | |
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/test')
| -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() { } |
