Skip to content

Commit eb6d757

Browse files
Umesh KalappaBaoshanPang
Umesh Kalappa
authored andcommitted
UI failures fix
1 parent f466f52 commit eb6d757

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/test/ui/intrinsics/intrinsic-alignment.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ mod rusti {
1919
target_os = "macos",
2020
target_os = "netbsd",
2121
target_os = "openbsd",
22-
target_os = "solaris"))]
22+
target_os = "solaris",
23+
target_os = "vxworks"))]
2324
mod m {
2425
#[main]
2526
#[cfg(target_arch = "x86")]

src/test/ui/signal-alternate-stack-cleanup.rs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// ignore-wasm32-bare no libc
88
// ignore-windows
99
// ignore-sgx no libc
10+
// ignore-vxworks no SIGWINCH in user space
1011

1112
#![feature(rustc_private)]
1213
extern crate libc;

src/test/ui/structs-enums/rec-align-u64.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ struct Outer {
4040
target_os = "macos",
4141
target_os = "netbsd",
4242
target_os = "openbsd",
43-
target_os = "solaris"))]
43+
target_os = "solaris",
44+
target_os = "vxworks"))]
4445
mod m {
4546
#[cfg(target_arch = "x86")]
4647
pub mod m {

0 commit comments

Comments
 (0)