From 343f11bccfc06d394234e1507d88f1369f7f284b Mon Sep 17 00:00:00 2001
From: Ivan Smirnov <i.s.smirnov@gmail.com>
Date: Sat, 1 Jan 2022 21:55:51 +0300
Subject: [PATCH] Sort the files when running benches

---
 qoi-bench/src/main.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/qoi-bench/src/main.rs b/qoi-bench/src/main.rs
index 80b875b..49553e3 100644
--- a/qoi-bench/src/main.rs
+++ b/qoi-bench/src/main.rs
@@ -68,6 +68,7 @@ fn find_pngs(paths: &[PathBuf]) -> Result<Vec<PathBuf>> {
             bail!("path doesn't exist: {}", path.to_string_lossy());
         }
     }
+    out.sort_unstable();
     Ok(out)
 }