Skip to content

Commit f6f2142

Browse files
authored
Rollup merge of rust-lang#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
2 parents 7f2c3e1 + 173cbf1 commit f6f2142

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

src/test/ui/core-run-destroy.rs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
// ignore-cloudabi no processes
99
// ignore-emscripten no processes
1010
// ignore-sgx no processes
11+
// ignore-vxworks no 'cat' and 'sleep'
1112

1213
// N.B., these tests kill child processes. Valgrind sees these children as leaking
1314
// memory, which makes for some *confusing* logs. That's why these are here

src/test/ui/process/process-sigpipe.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
// ignore-cloudabi no subprocesses support
1616
// ignore-emscripten no threads support
17+
// ignore-vxworks no 'sh'
1718

1819
use std::process;
1920
use std::thread;

src/test/ui/wait-forked-but-failed-child.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// ignore-cloudabi no processes
33
// ignore-emscripten no processes
44
// ignore-sgx no processes
5+
// ignore-vxworks no 'ps'
56

67
#![feature(rustc_private)]
78

src/test/ui/x86stdcall.rs

+1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ pub fn main() {
3232
target_os = "macos",
3333
target_os = "netbsd",
3434
target_os = "openbsd",
35+
target_os = "vxworks",
3536
target_os = "solaris"))]
3637
pub fn main() { }

0 commit comments

Comments
 (0)