# HG changeset patch # User Bram Moolenaar # Date 1586121335 -7200 # Node ID 2792f7d5db34e534db11a93d97bca27c9dd5bf26 # Parent 473ecb2b52c1fa628aa705b78d2b0ad0507cac13 patch 8.2.0520: tests are not listed in sorted order Commit: https://github.com/vim/vim/commit/6c307dcd554a1ce14c4279a3c2ede29f972bdb23 Author: Bram Moolenaar Date: Sun Apr 5 23:04:57 2020 +0200 patch 8.2.0520: tests are not listed in sorted order Problem: Tests are not listed in sorted order. Solution: Move test_ex_mode. (Doug Richardson, closes https://github.com/vim/vim/issues/5889) diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak --- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -96,9 +96,9 @@ NEW_TESTS = \ test_escaped_glob \ test_eval_stuff \ test_ex_equal \ + test_ex_mode \ test_ex_undo \ test_ex_z \ - test_ex_mode \ test_excmd \ test_exec_while_if \ test_execute_func \ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 520, +/**/ 519, /**/ 518,