diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-14 19:11:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-14 19:11:03 +0200 |
commit | 4ac97f476157ee0a3600e90f79f04813c418c172 (patch) | |
tree | 0f2f3a20e5f10af616fe4fa41a18485446fcf923 | |
parent | 32f335f75c5860baa452144f63ab7a4a3dd83134 (diff) | |
download | vim-git-4ac97f476157ee0a3600e90f79f04813c418c172.tar.gz |
patch 8.2.1448: test 77a for VMS depends on small.vim which does not existv8.2.1448
Problem: Test 77a for VMS depends on small.vim which does not exist.
Solution: Use the 'silent while 0" trick. (issue #6696)
-rw-r--r-- | src/testdir/test77a.in | 6 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/testdir/test77a.in b/src/testdir/test77a.in index 052e29a61..b4f38b5bb 100644 --- a/src/testdir/test77a.in +++ b/src/testdir/test77a.in @@ -10,7 +10,11 @@ If it isn't available then the test will be skipped. VMS does not have CKSUM but has a built in CHECKSUM - it should be used STARTTEST -:so small.vim +:silent! while 0 +: e! test.ok +: w! test.out +: qa! +:silent! endwhile :if !has("vms") : e! test.ok : w! test.out diff --git a/src/version.c b/src/version.c index 11dd39654..e9bf1b7d8 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1448, +/**/ 1447, /**/ 1446, |