summaryrefslogtreecommitdiffstats
path: root/testing/runtests.py
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-01-05 22:13:10 (GMT)
committerGitHub <noreply@github.com>2019-01-05 22:13:10 (GMT)
commit3660067f732d360613eed929f76a627bc9dc8698 (patch)
tree5a123a704d66ad1a69661ec92946efc63193a879 /testing/runtests.py
parentb5c134b2b99505c79e078030321a91cd240083d0 (diff)
parent46879ff8b9f4e7cd9b32542f97b282afbf41553a (diff)
downloadDoxygen-3660067f732d360613eed929f76a627bc9dc8698.zip
Doxygen-3660067f732d360613eed929f76a627bc9dc8698.tar.gz
Doxygen-3660067f732d360613eed929f76a627bc9dc8698.tar.bz2
Merge pull request #6743 from albert-github/feature/bug_sorting_tests
Tests are unsorted
Diffstat (limited to 'testing/runtests.py')
-rwxr-xr-xtesting/runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/runtests.py b/testing/runtests.py
index aa03612..358fb91 100755
--- a/testing/runtests.py
+++ b/testing/runtests.py
@@ -412,7 +412,7 @@ def main():
tests.append(glob.glob('0%s_*'%id))
tests.append(glob.glob('00%s_*'%id))
if (not args.ids and not args.start_id): # find all tests
- tests = glob.glob('[0-9][0-9][0-9]_*')
+ tests = sorted(glob.glob('[0-9][0-9][0-9]_*'))
else:
tests = list(itertools.chain.from_iterable(tests))
os.chdir(starting_directory)