]> git.marmaro.de Git - mmh/commitdiff
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 a4a726925c4ed8eaf15eb5c1db9488badbf0dc77..c06481ef66f1f6b0f63773bd613ff33802c5df9f 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