From d1ddea31fec698bedc7f1c67e040f8568d843ee9 Mon Sep 17 00:00:00 2001
From: markus schnalke <meillo@marmaro.de>
Date: Tue, 27 Oct 2015 22:30:30 +0100
Subject: [PATCH] Run the tests in defined (i.e. sorted) order

---
 test/runalltests | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/runalltests b/test/runalltests
index a4a72692..c06481ef 100755
--- a/test/runalltests
+++ b/test/runalltests
@@ -5,7 +5,7 @@ failed=0
 skipped=0
 
 # Note that we ignore *~ files as these are probably editor backups
-for i in `find tests -name 'test-*[!~]' -type f`;
+for i in `find tests -name 'test-*[!~]' -type f | LC_ALL=C sort`;
 do
 	./runtest "$i"
 	case $? in
-- 
2.39.5