summaryrefslogtreecommitdiffstats
path: root/src/testdir/Make_all.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-03-14 13:43:24 +0100
committerBram Moolenaar <Bram@vim.org>2019-03-14 13:43:24 +0100
commit209b8e3e3bf7a4a3d102134124120f6c7f57d560 (patch)
tree33987c009f69516962abe91c03672c0a42309c50 /src/testdir/Make_all.mak
parent4aa47b28f453b40d3b93ef209a3447c62b6f855b (diff)
patch 8.1.1007: using closure may consume a lot of memoryv8.1.1007
Problem: Using closure may consume a lot of memory. Solution: unreference items that are no longer needed. Add a test. (Ozaki Kiichi, closes #3961)
Diffstat (limited to 'src/testdir/Make_all.mak')
-rw-r--r--src/testdir/Make_all.mak6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak
index 774c96b7a4..c12a59ea9d 100644
--- a/src/testdir/Make_all.mak
+++ b/src/testdir/Make_all.mak
@@ -63,8 +63,8 @@ SCRIPTS_GUI =
# Individual tests, including the ones part of test_alot.
# Please keep sorted up to test_alot.
NEW_TESTS = \
- test_arglist \
test_arabic \
+ test_arglist \
test_assert \
test_assign \
test_autochdir \
@@ -108,11 +108,11 @@ NEW_TESTS = \
test_ex_equal \
test_ex_undo \
test_ex_z \
- test_exit \
test_exec_while_if \
test_execute_func \
test_exists \
test_exists_autocmd \
+ test_exit \
test_expand \
test_expand_dllpath \
test_expand_func \
@@ -179,6 +179,7 @@ NEW_TESTS = \
test_match \
test_matchadd_conceal \
test_matchadd_conceal_utf8 \
+ test_memory_usage \
test_menu \
test_messages \
test_mksession \
@@ -355,6 +356,7 @@ NEW_TESTS_RES = \
test_maparg.res \
test_marks.res \
test_matchadd_conceal.res \
+ test_memory_usage.res \
test_mksession.res \
test_nested_function.res \
test_netbeans.res \