diff options
| author | Tyler Mandry <tmandry@gmail.com> | 2021-04-30 04:02:05 +0000 |
|---|---|---|
| committer | Tyler Mandry <tmandry@gmail.com> | 2021-05-06 02:49:34 +0000 |
| commit | 947ad5838c08c5609f619b96d0baa197cd20f4b0 (patch) | |
| tree | aad7c0279e0aa292f281c0ee35a191cf9cae75b6 | |
| parent | 1993e1a86d44c0a6eb54b9a1d6c8c636eb094c68 (diff) | |
| download | rust-947ad5838c08c5609f619b96d0baa197cd20f4b0.tar.gz rust-947ad5838c08c5609f619b96d0baa197cd20f4b0.zip | |
Fix up/ignore failing ui tests on fuchsia
| -rw-r--r-- | src/test/ui/intrinsics/intrinsic-alignment.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/issues/issue-70093.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/structs-enums/rec-align-u64.rs | 1 | ||||
| -rw-r--r-- | src/test/ui/x86stdcall.rs | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/test/ui/intrinsics/intrinsic-alignment.rs b/src/test/ui/intrinsics/intrinsic-alignment.rs index 592409ba89f..5a27ea8783a 100644 --- a/src/test/ui/intrinsics/intrinsic-alignment.rs +++ b/src/test/ui/intrinsics/intrinsic-alignment.rs @@ -14,6 +14,7 @@ mod rusti { target_os = "dragonfly", target_os = "emscripten", target_os = "freebsd", + target_os = "fuchsia", target_os = "linux", target_os = "macos", target_os = "netbsd", diff --git a/src/test/ui/issues/issue-70093.rs b/src/test/ui/issues/issue-70093.rs index 95ab86ebcb1..fbe68fb9379 100644 --- a/src/test/ui/issues/issue-70093.rs +++ b/src/test/ui/issues/issue-70093.rs @@ -1,6 +1,7 @@ // run-pass // compile-flags: -Zlink-native-libraries=no -Cdefault-linker-libraries=yes // ignore-windows - this will probably only work on unixish systems +// ignore-fuchsia - missing __libc_start_main for some reason (#84733) #[link(name = "some-random-non-existent-library", kind = "static")] extern "C" {} diff --git a/src/test/ui/structs-enums/rec-align-u64.rs b/src/test/ui/structs-enums/rec-align-u64.rs index 69544b1c060..cc6412e271a 100644 --- a/src/test/ui/structs-enums/rec-align-u64.rs +++ b/src/test/ui/structs-enums/rec-align-u64.rs @@ -35,6 +35,7 @@ struct Outer { target_os = "dragonfly", target_os = "emscripten", target_os = "freebsd", + target_os = "fuchsia", target_os = "linux", target_os = "macos", target_os = "netbsd", diff --git a/src/test/ui/x86stdcall.rs b/src/test/ui/x86stdcall.rs index e1136807b3c..2bf4cfc5003 100644 --- a/src/test/ui/x86stdcall.rs +++ b/src/test/ui/x86stdcall.rs @@ -27,6 +27,7 @@ pub fn main() { target_os = "dragonfly", target_os = "emscripten", target_os = "freebsd", + target_os = "fuchsia", target_os = "linux", target_os = "macos", target_os = "netbsd", |
