From d1ddea31fec698bedc7f1c67e040f8568d843ee9 Mon Sep 17 00:00:00 2001 From: markus schnalke Date: Tue, 27 Oct 2015 22:30:30 +0100 Subject: [PATCH 1/1] 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 a4a7269..c06481e 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 -- 1.7.10.4