diff options
| author | Richard Lowe <richlowe@richlowe.net> | 2021-11-04 16:44:48 -0500 |
|---|---|---|
| committer | Richard Lowe <richlowe@richlowe.net> | 2021-11-04 17:00:19 -0500 |
| commit | dbc3bf48c48075e3db6b9dc42b6255eefefdb73e (patch) | |
| tree | 7c86f91fb1f31c354f282778a0fdf5fba5f7a1b7 /src/test | |
| parent | 4961b107f204e15b26961eab0685df6be3ab03c6 (diff) | |
| download | rust-dbc3bf48c48075e3db6b9dc42b6255eefefdb73e.tar.gz rust-dbc3bf48c48075e3db6b9dc42b6255eefefdb73e.zip | |
treat illumos like solaris in failing ui tests which need it
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/intrinsics/intrinsic-alignment.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/structs-enums/rec-align-u64.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/x86stdcall.rs | 5 |
3 files changed, 5 insertions, 2 deletions
diff --git a/src/test/ui/intrinsics/intrinsic-alignment.rs b/src/test/ui/intrinsics/intrinsic-alignment.rs index 5a27ea8783a..6007eba8c09 100644 --- a/src/test/ui/intrinsics/intrinsic-alignment.rs +++ b/src/test/ui/intrinsics/intrinsic-alignment.rs @@ -15,6 +15,7 @@ mod rusti { target_os = "emscripten", target_os = "freebsd", target_os = "fuchsia", + target_os = "illumos", target_os = "linux", target_os = "macos", target_os = "netbsd", diff --git a/src/test/ui/structs-enums/rec-align-u64.rs b/src/test/ui/structs-enums/rec-align-u64.rs index cc6412e271a..3bc2d16cf9d 100644 --- a/src/test/ui/structs-enums/rec-align-u64.rs +++ b/src/test/ui/structs-enums/rec-align-u64.rs @@ -36,6 +36,7 @@ struct Outer { target_os = "emscripten", target_os = "freebsd", target_os = "fuchsia", + target_os = "illumos", target_os = "linux", target_os = "macos", target_os = "netbsd", diff --git a/src/test/ui/x86stdcall.rs b/src/test/ui/x86stdcall.rs index 2bf4cfc5003..868923e5932 100644 --- a/src/test/ui/x86stdcall.rs +++ b/src/test/ui/x86stdcall.rs @@ -28,10 +28,11 @@ pub fn main() { target_os = "emscripten", target_os = "freebsd", target_os = "fuchsia", + target_os = "illumos", target_os = "linux", target_os = "macos", target_os = "netbsd", target_os = "openbsd", - target_os = "vxworks", - target_os = "solaris"))] + target_os = "solaris", + target_os = "vxworks"))] pub fn main() { } |
