We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc1fa56 commit 580259fCopy full SHA for 580259f
src/store/fs.rs
@@ -1984,10 +1984,13 @@ pub mod tests {
1984
#[tokio::test]
1985
async fn test_batch_fs() -> TestResult<()> {
1986
tracing_subscriber::fmt::try_init().ok();
1987
- let testdir = tempfile::tempdir()?;
1988
- let db_dir = testdir.path().join("db");
1989
- let store = FsStore::load(db_dir).await?;
1990
- test_batch(&store).await
+ for _i in 0..100 {
+ let testdir = tempfile::tempdir()?;
+ let db_dir = testdir.path().join("db");
+ let store = FsStore::load(db_dir).await?;
1991
+ test_batch(&store).await?;
1992
+ }
1993
+ Ok(())
1994
}
1995
1996
0 commit comments