]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_cranelift/patches/0003-rand-Disable-rand-tests-on-mingw.patch
Auto merge of #104120 - mejrs:diag, r=davidtwco
[rust.git] / compiler / rustc_codegen_cranelift / patches / 0003-rand-Disable-rand-tests-on-mingw.patch
1 From eec874c889b8d24e5ad50faded24288150f057b1 Mon Sep 17 00:00:00 2001
2 From: Afonso Bordado <afonsobordado@az8.co>
3 Date: Tue, 27 Sep 2022 08:13:58 +0100
4 Subject: [PATCH] Disable rand tests on mingw
5
6 ---
7  rand_distr/src/pareto.rs            | 2 ++
8  rand_distr/tests/value_stability.rs | 4 ++++
9  2 files changed, 6 insertions(+)
10
11 diff --git a/rand_distr/src/pareto.rs b/rand_distr/src/pareto.rs
12 index 217899e..9cedeb7 100644
13 --- a/rand_distr/src/pareto.rs
14 +++ b/rand_distr/src/pareto.rs
15 @@ -107,6 +107,8 @@ mod tests {
16      }
17
18      #[test]
19 +    // This is broken on x86_64-pc-windows-gnu presumably due to a broken powf implementation
20 +    #[cfg_attr(all(target_os = "windows", target_env = "gnu"), ignore)]
21      fn value_stability() {
22          fn test_samples<F: Float + core::fmt::Debug, D: Distribution<F>>(
23              distr: D, zero: F, expected: &[F],
24 diff --git a/rand_distr/tests/value_stability.rs b/rand_distr/tests/value_stability.rs
25 index 192ba74..0101ace 100644
26 --- a/rand_distr/tests/value_stability.rs
27 +++ b/rand_distr/tests/value_stability.rs
28 @@ -72,6 +72,8 @@ fn unit_disc_stability() {
29  }
30
31  #[test]
32 +// This is broken on x86_64-pc-windows-gnu
33 +#[cfg_attr(all(target_os = "windows", target_env = "gnu"), ignore)]
34  fn pareto_stability() {
35      test_samples(213, Pareto::new(1.0, 1.0).unwrap(), &[
36          1.0423688f32, 2.1235929, 4.132709, 1.4679428,
37 @@ -143,6 +145,8 @@ fn inverse_gaussian_stability() {
38  }
39
40  #[test]
41 +// This is broken on x86_64-pc-windows-gnu
42 +#[cfg_attr(all(target_os = "windows", target_env = "gnu"), ignore)]
43  fn gamma_stability() {
44      // Gamma has 3 cases: shape == 1, shape < 1, shape > 1
45      test_samples(223, Gamma::new(1.0, 5.0).unwrap(), &[
46 --
47 2.25.1