From d4f3cf03f940607f1e77fc2c1b27d8ae0b804408 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 7 Oct 2021 17:26:24 +0200 Subject: Add test for in doc blocks on mobile --- src/test/rustdoc-gui/docblock-big-code-mobile.goml | 9 +++++++++ src/test/rustdoc-gui/src/test_docs/lib.rs | 3 +++ 2 files changed, 12 insertions(+) create mode 100644 src/test/rustdoc-gui/docblock-big-code-mobile.goml (limited to 'src/test') diff --git a/src/test/rustdoc-gui/docblock-big-code-mobile.goml b/src/test/rustdoc-gui/docblock-big-code-mobile.goml new file mode 100644 index 00000000000..12677a5648a --- /dev/null +++ b/src/test/rustdoc-gui/docblock-big-code-mobile.goml @@ -0,0 +1,9 @@ +// If we have a long ``, we need to ensure that it'll be fully displayed on mobile, meaning +// that it'll be on two lines. +emulate: "iPhone 8" // it has the following size: (375, 667) +goto: file://|DOC_PATH|/test_docs/long_code_block/index.html +// We now check that the block is on two lines: +show-text: true // We need to enable text draw to be able to have the "real" size +// Little explanations for this test: if the text wasn't displayed on two lines, it would take +// around 20px (which is the font size). +assert-property: (".docblock p > code", {"offsetHeight": "42"}) diff --git a/src/test/rustdoc-gui/src/test_docs/lib.rs b/src/test/rustdoc-gui/src/test_docs/lib.rs index 0aa1426a36a..2a147e64d8b 100644 --- a/src/test/rustdoc-gui/src/test_docs/lib.rs +++ b/src/test/rustdoc-gui/src/test_docs/lib.rs @@ -120,3 +120,6 @@ pub type SomeType = u32; pub mod huge_amount_of_consts { include!(concat!(env!("OUT_DIR"), "/huge_amount_of_consts.rs")); } + +/// Very long code text `hereIgoWithLongTextBecauseWhyNotAndWhyWouldntI`. +pub mod long_code_block {} -- cgit 1.4.1-3-g733a5 From 7fb6e1aa61ddd954e1c416a5687147fb3b305adf Mon Sep 17 00:00:00 2001 From: Jubilee Young Date: Tue, 5 Oct 2021 15:46:19 -0700 Subject: Add regression test for issue 80108 --- src/test/ui/wasm/simd-to-array-80108.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/test/ui/wasm/simd-to-array-80108.rs (limited to 'src/test') diff --git a/src/test/ui/wasm/simd-to-array-80108.rs b/src/test/ui/wasm/simd-to-array-80108.rs new file mode 100644 index 00000000000..0576c2e6be1 --- /dev/null +++ b/src/test/ui/wasm/simd-to-array-80108.rs @@ -0,0 +1,15 @@ +// only-wasm32 +// compile-flags: --crate-type=lib -Copt-level=2 +// build-pass +#![feature(repr_simd)] + +// Regression test for #80108 + +#[repr(simd)] +pub struct Vector([i32; 4]); + +impl Vector { + pub const fn to_array(self) -> [i32; 4] { + self.0 + } +} -- cgit 1.4.1-3-g733a5