Skip to content

Commit

Permalink
bypass x86stdcall.rs for vxworks
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bpangWR committed Jul 28, 2019
1 parent 023525d commit 173cbf1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/test/ui/core-run-destroy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/test/ui/process/process-sigpipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

// ignore-cloudabi no subprocesses support
// ignore-emscripten no threads support
// ignore-vxworks no 'sh'

use std::process;
use std::thread;
Expand Down
1 change: 1 addition & 0 deletions src/test/ui/wait-forked-but-failed-child.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// ignore-cloudabi no processes
// ignore-emscripten no processes
// ignore-sgx no processes
// ignore-vxworks no 'ps'

#![feature(rustc_private)]

Expand Down
1 change: 1 addition & 0 deletions src/test/ui/x86stdcall.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() { }

0 comments on commit 173cbf1

Please sign in to comment.