@@ -736,27 +736,4 @@ mod sealed {
736
736
737
737
#[ cfg( test) ]
738
738
#[ allow( dead_code) ] // Not used in all configurations.
739
- pub ( crate ) mod test_helpers {
740
- /// Test-only replacement for `rand::thread_rng()`, which is unusable for
741
- /// us, as we want to allow running stdlib tests on tier-3 targets which may
742
- /// not have `getrandom` support.
743
- ///
744
- /// Does a bit of a song and dance to ensure that the seed is different on
745
- /// each call (as some tests sadly rely on this), but doesn't try that hard.
746
- ///
747
- /// This is duplicated in the `core`, `alloc` test suites (as well as
748
- /// `std`'s integration tests), but figuring out a mechanism to share these
749
- /// seems far more painful than copy-pasting a 7 line function a couple
750
- /// times, given that even under a perma-unstable feature, I don't think we
751
- /// want to expose types from `rand` from `std`.
752
- #[ track_caller]
753
- pub ( crate ) fn test_rng ( ) -> rand_xorshift:: XorShiftRng {
754
- use core:: hash:: { BuildHasher , Hash , Hasher } ;
755
- let mut hasher = crate :: hash:: RandomState :: new ( ) . build_hasher ( ) ;
756
- core:: panic:: Location :: caller ( ) . hash ( & mut hasher) ;
757
- let hc64 = hasher. finish ( ) ;
758
- let seed_vec = hc64. to_le_bytes ( ) . into_iter ( ) . chain ( 0u8 ..8 ) . collect :: < Vec < u8 > > ( ) ;
759
- let seed: [ u8 ; 16 ] = seed_vec. as_slice ( ) . try_into ( ) . unwrap ( ) ;
760
- rand:: SeedableRng :: from_seed ( seed)
761
- }
762
- }
739
+ pub ( crate ) mod test_helpers;
0 commit comments