Run the tests in defined (i.e. sorted) order
authormarkus schnalke <meillo@marmaro.de>
Tue, 27 Oct 2015 21:30:30 +0000 (22:30 +0100)
committermarkus schnalke <meillo@marmaro.de>
Tue, 27 Oct 2015 21:30:30 +0000 (22:30 +0100)
test/runalltests

index a4a7269..c06481e 100755 (executable)
@@ -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