2020-08-15 13:55:03 -05:00
|
|
|
From a8fb97120d71252538b6b026695df40d02696bdb Mon Sep 17 00:00:00 2001
|
|
|
|
From: bjorn3 <bjorn3@users.noreply.github.com>
|
|
|
|
Date: Sat, 15 Aug 2020 20:04:38 +0200
|
|
|
|
Subject: [PATCH] [rand] Disable failing test
|
|
|
|
|
|
|
|
---
|
2022-03-20 10:55:21 -05:00
|
|
|
src/distributions/uniform.rs | 1 +
|
|
|
|
1 file changed, 1 insertion(+), 0 deletions(-)
|
2020-08-15 13:55:03 -05:00
|
|
|
|
|
|
|
diff --git a/src/distributions/uniform.rs b/src/distributions/uniform.rs
|
|
|
|
index 480b859..c80bb6f 100644
|
|
|
|
--- a/src/distributions/uniform.rs
|
|
|
|
+++ b/src/distributions/uniform.rs
|
|
|
|
@@ -1314,6 +1314,7 @@ mod tests {
|
|
|
|
not(target_arch = "wasm32"),
|
|
|
|
not(target_arch = "asmjs")
|
|
|
|
))]
|
2022-03-20 10:55:21 -05:00
|
|
|
+ #[ignore] // Requires unwinding
|
2020-08-15 13:55:03 -05:00
|
|
|
fn test_float_assertions() {
|
|
|
|
use super::SampleUniform;
|
|
|
|
use std::panic::catch_unwind;
|
|
|
|
--
|
|
|
|
2.20.1
|
|
|
|
|