From: Bram Moolenaar Date: Wed, 12 Oct 2022 10:54:34 +0000 (+0100) Subject: patch 9.0.0730: startup test fails with right-left feature X-Git-Tag: v9.0.0730 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ce7915d0667e6cb8f930634473f0caf2967f4e3;p=thirdparty%2Fvim.git patch 9.0.0730: startup test fails with right-left feature Problem: Startup test fails with right-left feature. Solution: Do not delete test file too early. --- diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim index 6c2fbbd15d..081c7f8900 100644 --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -392,7 +392,7 @@ endfunc " Test the -A, -F and -H arguments (Arabic, Farsi and Hebrew modes). func Test_A_F_H_arg() let after =<< trim [CODE] - call writefile([&rightleft, &arabic, &fkmap, &hkmap], "Xtestout", 'D') + call writefile([&rightleft, &arabic, &fkmap, &hkmap], "Xtestout") qall [CODE] @@ -412,6 +412,8 @@ func Test_A_F_H_arg() let lines = readfile('Xtestout') call assert_equal(['1', '0', '0', '1'], lines) endif + + call delete('Xtestout') endfunc " Test the --echo-wid argument (for GTK GUI only). diff --git a/src/version.c b/src/version.c index 3413d52d6f..31d9776f7d 100644 --- a/src/version.c +++ b/src/version.c @@ -699,6 +699,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 730, /**/ 729, /**/