Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/memtest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ mod two_region {
/// A two region test has to passes of memory for every run. The test splits memory into
/// two halves. The first pass iterates through memory and writes some memory pattern to each
/// pair of locations. The second pass reads through and compare the two halves.
trait TwoRegionTestAlgorithm: fmt::Debug + Default {
pub(super) trait TwoRegionTestAlgorithm: fmt::Debug + Default {
/// The number of runs the algorithm needs. Most tests can just accept the default of '1'
fn num_runs(&self) -> u64 {
1
Expand Down