0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 9.1.0576: tests: still an issue with test_gettext_make

Problem:  tests: still an issue with test_gettext_make
          (after v9.1.0570)
Solution: Compare the getenv() output against v:null to verify
          that $GETTEXT_PATH was set or not (Ken Takata)

closes: #15236

Signed-off-by: Ken Takata <kentkt@csc.jp>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Ken Takata 2024-07-13 18:56:25 +02:00 committed by Christian Brabandt
parent 1a3dd7dc78
commit 71de259e78
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
2 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@ CheckFeature gettext
func Test_gettext_makefile()
cd ../po
if has('win32')
if getenv('GETTEXT_PATH') == ''
if getenv('GETTEXT_PATH') == v:null
throw 'Skipped: %GETTEXT_PATH% is not set.'
endif
call system('nmake.exe -f Make_mvc.mak "VIMPROG=' .. getenv('VIMPROG') ..

View File

@ -704,6 +704,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
576,
/**/
575,
/**/