forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#133859 - bjorn3:move_tests_to_alloctests, r=tgross35 Move some alloc tests to the alloctests crate Unit tests directly inside of standard library crates require a very fragile way of building that is hard to reproduce outside of bootstrap.
- Loading branch information
Showing
14 changed files
with
123 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
library/alloc/src/alloc/tests.rs → library/alloc/tests/alloc.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 4 additions & 3 deletions
7
library/alloc/src/ffi/c_str/tests.rs → library/alloc/tests/c_str2.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
mod binary_heap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
10 changes: 6 additions & 4 deletions
10
library/alloc/src/sync/tests.rs → library/alloc/tests/sync.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
use std::cmp::Ordering; | ||
use std::fmt::Debug; | ||
use std::sync::atomic::AtomicUsize; | ||
use std::sync::atomic::Ordering::SeqCst; | ||
|
||
/// A blueprint for crash test dummy instances that monitor drops. | ||
/// Some instances may be configured to panic at some point. | ||
/// | ||
/// Crash test dummies are identified and ordered by an id, so they can be used | ||
/// as keys in a BTreeMap. | ||
#[derive(Debug)] | ||
pub struct CrashTestDummy { | ||
pub id: usize, | ||
dropped: AtomicUsize, | ||
} | ||
|
||
impl CrashTestDummy { | ||
/// Creates a crash test dummy design. The `id` determines order and equality of instances. | ||
pub fn new(id: usize) -> CrashTestDummy { | ||
CrashTestDummy { id, dropped: AtomicUsize::new(0) } | ||
} | ||
|
||
/// Creates an instance of a crash test dummy that records what events it experiences | ||
/// and optionally panics. | ||
pub fn spawn(&self, panic: Panic) -> Instance<'_> { | ||
Instance { origin: self, panic } | ||
} | ||
|
||
/// Returns how many times instances of the dummy have been dropped. | ||
pub fn dropped(&self) -> usize { | ||
self.dropped.load(SeqCst) | ||
} | ||
} | ||
|
||
#[derive(Debug)] | ||
pub struct Instance<'a> { | ||
origin: &'a CrashTestDummy, | ||
panic: Panic, | ||
} | ||
|
||
#[derive(Copy, Clone, Debug, PartialEq, Eq)] | ||
pub enum Panic { | ||
Never, | ||
InDrop, | ||
} | ||
|
||
impl Instance<'_> { | ||
pub fn id(&self) -> usize { | ||
self.origin.id | ||
} | ||
} | ||
|
||
impl Drop for Instance<'_> { | ||
fn drop(&mut self) { | ||
self.origin.dropped.fetch_add(1, SeqCst); | ||
if self.panic == Panic::InDrop { | ||
panic!("panic in `drop`"); | ||
} | ||
} | ||
} | ||
|
||
impl PartialOrd for Instance<'_> { | ||
fn partial_cmp(&self, other: &Self) -> Option<Ordering> { | ||
self.id().partial_cmp(&other.id()) | ||
} | ||
} | ||
|
||
impl Ord for Instance<'_> { | ||
fn cmp(&self, other: &Self) -> Ordering { | ||
self.id().cmp(&other.id()) | ||
} | ||
} | ||
|
||
impl PartialEq for Instance<'_> { | ||
fn eq(&self, other: &Self) -> bool { | ||
self.id().eq(&other.id()) | ||
} | ||
} | ||
|
||
impl Eq for Instance<'_> {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pub mod crash_test; |