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)`````
This commit is contained in:
Yuki Okushi 2021-11-09 22:02:22 +09:00 committed by GitHub
commit 6e39d27a82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -15,6 +15,7 @@ mod rusti {
target_os = "emscripten", target_os = "emscripten",
target_os = "freebsd", target_os = "freebsd",
target_os = "fuchsia", target_os = "fuchsia",
target_os = "illumos",
target_os = "linux", target_os = "linux",
target_os = "macos", target_os = "macos",
target_os = "netbsd", target_os = "netbsd",

View File

@ -36,6 +36,7 @@ struct Outer {
target_os = "emscripten", target_os = "emscripten",
target_os = "freebsd", target_os = "freebsd",
target_os = "fuchsia", target_os = "fuchsia",
target_os = "illumos",
target_os = "linux", target_os = "linux",
target_os = "macos", target_os = "macos",
target_os = "netbsd", target_os = "netbsd",

View File

@ -28,10 +28,11 @@ pub fn main() {
target_os = "emscripten", target_os = "emscripten",
target_os = "freebsd", target_os = "freebsd",
target_os = "fuchsia", target_os = "fuchsia",
target_os = "illumos",
target_os = "linux", target_os = "linux",
target_os = "macos", target_os = "macos",
target_os = "netbsd", target_os = "netbsd",
target_os = "openbsd", target_os = "openbsd",
target_os = "vxworks", target_os = "solaris",
target_os = "solaris"))] target_os = "vxworks"))]
pub fn main() { } pub fn main() { }