2019-11-24 08:44:39 -06:00
|
|
|
|
From f6befc4bb51d84f5f1cf35938a168c953d421350 Mon Sep 17 00:00:00 2001
|
|
|
|
|
From: bjorn3 <bjorn3@users.noreply.github.com>
|
|
|
|
|
Date: Sun, 24 Nov 2019 15:10:23 +0100
|
|
|
|
|
Subject: [PATCH] [core] Disable not compiling tests
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
|
src/libcore/tests/Cargo.toml | 8 ++++++++
|
|
|
|
|
src/libcore/tests/num/flt2dec/mod.rs | 1 -
|
|
|
|
|
src/libcore/tests/num/int_macros.rs | 2 ++
|
|
|
|
|
src/libcore/tests/num/uint_macros.rs | 2 ++
|
|
|
|
|
src/libcore/tests/ptr.rs | 2 ++
|
|
|
|
|
src/libcore/tests/slice.rs | 2 ++
|
|
|
|
|
6 files changed, 16 insertions(+), 1 deletion(-)
|
|
|
|
|
create mode 100644 src/libcore/tests/Cargo.toml
|
|
|
|
|
|
|
|
|
|
diff --git a/src/libcore/tests/Cargo.toml b/src/libcore/tests/Cargo.toml
|
|
|
|
|
new file mode 100644
|
|
|
|
|
index 0000000..46fd999
|
|
|
|
|
--- /dev/null
|
|
|
|
|
+++ b/src/libcore/tests/Cargo.toml
|
|
|
|
|
@@ -0,0 +1,8 @@
|
|
|
|
|
+[package]
|
|
|
|
|
+name = "core"
|
|
|
|
|
+version = "0.0.0"
|
|
|
|
|
+edition = "2018"
|
|
|
|
|
+
|
|
|
|
|
+[lib]
|
|
|
|
|
+name = "coretests"
|
|
|
|
|
+path = "lib.rs"
|
|
|
|
|
diff --git a/src/libcore/tests/num/flt2dec/mod.rs b/src/libcore/tests/num/flt2dec/mod.rs
|
|
|
|
|
index a35897e..f0bf645 100644
|
|
|
|
|
--- a/src/libcore/tests/num/flt2dec/mod.rs
|
|
|
|
|
+++ b/src/libcore/tests/num/flt2dec/mod.rs
|
|
|
|
|
@@ -13,7 +13,6 @@ mod strategy {
|
|
|
|
|
mod dragon;
|
|
|
|
|
mod grisu;
|
|
|
|
|
}
|
|
|
|
|
-mod random;
|
|
|
|
|
|
|
|
|
|
pub fn decode_finite<T: DecodableFloat>(v: T) -> Decoded {
|
|
|
|
|
match decode(v).1 {
|
|
|
|
|
diff --git a/src/libcore/tests/num/int_macros.rs b/src/libcore/tests/num/int_macros.rs
|
|
|
|
|
index 0475aeb..9558198 100644
|
|
|
|
|
--- a/src/libcore/tests/num/int_macros.rs
|
|
|
|
|
+++ b/src/libcore/tests/num/int_macros.rs
|
|
|
|
|
@@ -88,6 +88,7 @@ mod tests {
|
2020-01-29 04:21:29 -06:00
|
|
|
|
assert_eq!(x.trailing_ones(), 0);
|
2019-12-16 04:33:57 -06:00
|
|
|
|
}
|
2019-11-24 08:44:39 -06:00
|
|
|
|
|
2019-12-16 04:33:57 -06:00
|
|
|
|
+ /*
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_rotate() {
|
|
|
|
|
assert_eq!(A.rotate_left(6).rotate_right(2).rotate_right(4), A);
|
2019-11-24 08:44:39 -06:00
|
|
|
|
@@ -112,6 +113,7 @@ mod tests {
|
2019-12-16 04:33:57 -06:00
|
|
|
|
assert_eq!(B.rotate_left(64), B);
|
|
|
|
|
assert_eq!(C.rotate_left(64), C);
|
|
|
|
|
}
|
|
|
|
|
+ */
|
2019-11-24 08:44:39 -06:00
|
|
|
|
|
2019-12-16 04:33:57 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_swap_bytes() {
|
2019-11-24 08:44:39 -06:00
|
|
|
|
diff --git a/src/libcore/tests/num/uint_macros.rs b/src/libcore/tests/num/uint_macros.rs
|
|
|
|
|
index 04ed14f..a6e372e 100644
|
|
|
|
|
--- a/src/libcore/tests/num/uint_macros.rs
|
|
|
|
|
+++ b/src/libcore/tests/num/uint_macros.rs
|
|
|
|
|
@@ -52,6 +52,7 @@ mod tests {
|
2020-01-29 04:21:29 -06:00
|
|
|
|
assert_eq!(x.trailing_ones(), 0);
|
2019-12-16 04:33:57 -06:00
|
|
|
|
}
|
2019-11-24 08:44:39 -06:00
|
|
|
|
|
2019-12-16 04:33:57 -06:00
|
|
|
|
+ /*
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_rotate() {
|
|
|
|
|
assert_eq!(A.rotate_left(6).rotate_right(2).rotate_right(4), A);
|
2019-11-24 08:44:39 -06:00
|
|
|
|
@@ -76,6 +77,7 @@ mod tests {
|
2019-12-16 04:33:57 -06:00
|
|
|
|
assert_eq!(B.rotate_left(64), B);
|
|
|
|
|
assert_eq!(C.rotate_left(64), C);
|
|
|
|
|
}
|
|
|
|
|
+ */
|
2019-11-24 08:44:39 -06:00
|
|
|
|
|
2019-12-16 04:33:57 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_swap_bytes() {
|
2019-11-24 08:44:39 -06:00
|
|
|
|
diff --git a/src/libcore/tests/ptr.rs b/src/libcore/tests/ptr.rs
|
|
|
|
|
index 1a6be3a..42dbd59 100644
|
|
|
|
|
--- a/src/libcore/tests/ptr.rs
|
|
|
|
|
+++ b/src/libcore/tests/ptr.rs
|
|
|
|
|
@@ -250,6 +250,7 @@ fn test_unsized_nonnull() {
|
|
|
|
|
assert!(ys == zs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+/*
|
|
|
|
|
#[test]
|
|
|
|
|
#[allow(warnings)]
|
|
|
|
|
// Have a symbol for the test below. It doesn’t need to be an actual variadic function, match the
|
|
|
|
|
@@ -289,6 +290,7 @@ fn write_unaligned_drop() {
|
|
|
|
|
}
|
|
|
|
|
DROPS.with(|d| assert_eq!(*d.borrow(), [0]));
|
|
|
|
|
}
|
|
|
|
|
+*/
|
|
|
|
|
|
|
|
|
|
#[test]
|
2019-12-16 04:33:57 -06:00
|
|
|
|
#[cfg_attr(miri, ignore)] // Miri does not compute a maximal `mid` for `align_offset`
|
2019-11-24 08:44:39 -06:00
|
|
|
|
diff --git a/src/libcore/tests/slice.rs b/src/libcore/tests/slice.rs
|
|
|
|
|
index 6609bc3..241b497 100644
|
|
|
|
|
--- a/src/libcore/tests/slice.rs
|
|
|
|
|
+++ b/src/libcore/tests/slice.rs
|
|
|
|
|
@@ -1209,6 +1209,7 @@ fn brute_force_rotate_test_1() {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+/*
|
|
|
|
|
#[test]
|
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
|
fn sort_unstable() {
|
|
|
|
|
@@ -1394,6 +1395,7 @@ fn partition_at_index() {
|
|
|
|
|
v.partition_at_index(0);
|
|
|
|
|
assert!(v == [0xDEADBEEF]);
|
|
|
|
|
}
|
|
|
|
|
+*/
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_panic(expected = "index 0 greater than length of slice")]
|
2020-05-25 06:00:15 -05:00
|
|
|
|
diff --git a/src/libcore/tests/iter.rs b/src/libcore/tests/iter.rs
|
|
|
|
|
index b73b621..d6cc3f8 100644
|
|
|
|
|
--- a/src/libcore/tests/iter.rs
|
|
|
|
|
+++ b/src/libcore/tests/iter.rs
|
|
|
|
|
@@ -2541,6 +2541,7 @@ fn test_steps_between() {
|
|
|
|
|
|
|
|
|
|
// Skip u64/i64 to avoid differences with 32-bit vs 64-bit platforms
|
|
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
|
assert_eq!(Step::steps_between(&20_u128, &200_u128), Some(180_usize));
|
|
|
|
|
assert_eq!(Step::steps_between(&-20_i128, &80_i128), Some(100_usize));
|
|
|
|
|
if cfg!(target_pointer_width = "64") {
|
|
|
|
|
@@ -2552,6 +2553,7 @@ fn test_steps_between() {
|
|
|
|
|
Step::steps_between(&-0x1_0000_0000_0000_0000_i128, &0x1_0000_0000_0000_0000_i128,),
|
|
|
|
|
None,
|
|
|
|
|
);
|
|
|
|
|
+ */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2019-11-24 08:44:39 -06:00
|
|
|
|
--
|
|
|
|
|
2.21.0 (Apple Git-122)
|