diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-08 20:50:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-08 20:50:43 +0200 |
commit | 077a1e670ad69ef4cefc22103ca6635bd269e764 (patch) | |
tree | d46a114dc598e3ac47aa8e846a055f1f5b4c9999 /src/testdir/Make_all.mak | |
parent | ec98e93a82379ca9289d8021aec374aa6798afef (diff) | |
download | vim-git-077a1e670ad69ef4cefc22103ca6635bd269e764.tar.gz |
patch 8.2.0935: flattening a list with existing code is slowv8.2.0935
Problem: Flattening a list with existing code is slow.
Solution: Add flatten(). (Mopp, closes #3676)
Diffstat (limited to 'src/testdir/Make_all.mak')
-rw-r--r-- | src/testdir/Make_all.mak | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak index 7402067b4..2a133ef91 100644 --- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -135,6 +135,7 @@ NEW_TESTS = \ test_find_complete \ test_findfile \ test_fixeol \ + test_flatten \ test_float_func \ test_fnameescape \ test_fnamemodify \ @@ -373,6 +374,7 @@ NEW_TESTS_RES = \ test_find_complete.res \ test_findfile.res \ test_fixeol.res \ + test_flatten.res \ test_float_func.res \ test_fnameescape.res \ test_fold.res \ |