0
0
mirror of https://github.com/vim/vim.git synced 2025-10-27 09:24:23 -04:00

patch 9.1.1525: tests: testdir/ is a bit messy

Problem:  tests: testdir is a bit messy
Solution: move test scripts into testdir/util/ directory

src/testdir/ has become a dumping ground mixing test cases with utility
functions. Let's fix this by moving all utility functions into the
testdir/util/ directory

Also a few related changes had to be done:
- Update Filelist
- update README.txt and mention the new directory layout
- fix shadowbuild by linking the util directory into the shadow dir

closes: #17677

Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Christian Brabandt
2025-07-07 20:53:55 +02:00
parent b0905e269d
commit eb380b991c
148 changed files with 235 additions and 229 deletions

View File

@@ -1,6 +1,6 @@
" Test for lambda and closure
import './vim9.vim' as v9
import './util/vim9.vim' as v9
func Test_lambda_feature()
call assert_equal(1, has('lambda'))