Skip to content

Commit 6e39d27

Browse files
authored
Rollup merge of #90591 - richlowe:illumos-ui-target, r=Mark-Simulacrum
treat illumos like solaris in failing ui tests which need it Just adding the right cfg target for tests which fail because they don't know illumos is a thing. (cc `````@jclulow)`````
2 parents d638c1d + dbc3bf4 commit 6e39d27

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ mod rusti {
1515
target_os = "emscripten",
1616
target_os = "freebsd",
1717
target_os = "fuchsia",
18+
target_os = "illumos",
1819
target_os = "linux",
1920
target_os = "macos",
2021
target_os = "netbsd",

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

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ struct Outer {
3636
target_os = "emscripten",
3737
target_os = "freebsd",
3838
target_os = "fuchsia",
39+
target_os = "illumos",
3940
target_os = "linux",
4041
target_os = "macos",
4142
target_os = "netbsd",

src/test/ui/x86stdcall.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ pub fn main() {
2828
target_os = "emscripten",
2929
target_os = "freebsd",
3030
target_os = "fuchsia",
31+
target_os = "illumos",
3132
target_os = "linux",
3233
target_os = "macos",
3334
target_os = "netbsd",
3435
target_os = "openbsd",
35-
target_os = "vxworks",
36-
target_os = "solaris"))]
36+
target_os = "solaris",
37+
target_os = "vxworks"))]
3738
pub fn main() { }

0 commit comments

Comments
 (0)