2019-11-24 14:44:39 +00: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
|
|
|
|
|
|
|
|
|
|
---
|
2020-07-30 12:58:27 +00:00
|
|
|
|
library/core/tests/Cargo.toml | 8 ++++++++
|
|
|
|
|
library/core/tests/num/flt2dec/mod.rs | 1 -
|
|
|
|
|
library/core/tests/num/int_macros.rs | 2 ++
|
|
|
|
|
library/core/tests/num/uint_macros.rs | 2 ++
|
|
|
|
|
library/core/tests/ptr.rs | 2 ++
|
|
|
|
|
library/core/tests/slice.rs | 2 ++
|
2019-11-24 14:44:39 +00:00
|
|
|
|
6 files changed, 16 insertions(+), 1 deletion(-)
|
2020-07-30 12:58:27 +00:00
|
|
|
|
create mode 100644 library/core/tests/Cargo.toml
|
2019-11-24 14:44:39 +00:00
|
|
|
|
|
2020-07-30 12:58:27 +00:00
|
|
|
|
diff --git a/library/core/tests/Cargo.toml b/library/core/tests/Cargo.toml
|
2019-11-24 14:44:39 +00:00
|
|
|
|
new file mode 100644
|
|
|
|
|
index 0000000..46fd999
|
|
|
|
|
--- /dev/null
|
2020-07-30 12:58:27 +00:00
|
|
|
|
+++ b/library/core/tests/Cargo.toml
|
2022-03-18 20:19:37 +00:00
|
|
|
|
@@ -0,0 +1,11 @@
|
2019-11-24 14:44:39 +00:00
|
|
|
|
+[package]
|
|
|
|
|
+name = "core"
|
|
|
|
|
+version = "0.0.0"
|
2022-01-18 12:41:01 +00:00
|
|
|
|
+edition = "2021"
|
2019-11-24 14:44:39 +00:00
|
|
|
|
+
|
|
|
|
|
+[lib]
|
|
|
|
|
+name = "coretests"
|
|
|
|
|
+path = "lib.rs"
|
2022-03-18 20:19:37 +00:00
|
|
|
|
+
|
|
|
|
|
+[dependencies]
|
|
|
|
|
+rand = "0.7"
|
2020-07-30 12:58:27 +00:00
|
|
|
|
diff --git a/library/core/tests/ptr.rs b/library/core/tests/ptr.rs
|
2019-11-24 14:44:39 +00:00
|
|
|
|
index 1a6be3a..42dbd59 100644
|
2020-07-30 12:58:27 +00:00
|
|
|
|
--- a/library/core/tests/ptr.rs
|
|
|
|
|
+++ b/library/core/tests/ptr.rs
|
2019-11-24 14:44:39 +00:00
|
|
|
|
@@ -250,6 +250,7 @@ fn test_unsized_nonnull() {
|
2022-01-30 15:52:18 +00:00
|
|
|
|
};
|
2019-11-24 14:44:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
+/*
|
|
|
|
|
#[test]
|
|
|
|
|
#[allow(warnings)]
|
|
|
|
|
// Have a symbol for the test below. It doesn’t need to be an actual variadic function, match the
|
2021-07-26 17:34:23 +00:00
|
|
|
|
@@ -277,6 +277,7 @@ pub fn test_variadic_fnptr() {
|
|
|
|
|
let mut s = SipHasher::new();
|
|
|
|
|
assert_eq!(p.hash(&mut s), q.hash(&mut s));
|
2019-11-24 14:44:39 +00:00
|
|
|
|
}
|
|
|
|
|
+*/
|
|
|
|
|
|
|
|
|
|
#[test]
|
2021-07-26 17:34:23 +00:00
|
|
|
|
fn write_unaligned_drop() {
|
2020-06-20 11:23:31 +00:00
|
|
|
|
--
|
2019-11-24 14:44:39 +00:00
|
|
|
|
2.21.0 (Apple Git-122)
|