# HG changeset patch # User Bram Moolenaar # Date 1588797005 -7200 # Node ID 8a6e2b44b08fef3f649a053db6a2170d04a42477 # Parent e679630d4e0e4afd244f63a339637532dc6a0793 patch 8.2.0705: indent tests don't run on CI for FreeBSD Commit: https://github.com/vim/vim/commit/3657686a0e8fd07428a25c2cf9efcc8b5d33f895 Author: Bram Moolenaar Date: Wed May 6 22:25:05 2020 +0200 patch 8.2.0705: indent tests don't run on CI for FreeBSD Problem: Indent tests don't run on CI for FreeBSD. Solution: Set modeline. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/6048) diff --git a/.cirrus.yml b/.cirrus.yml --- a/.cirrus.yml +++ b/.cirrus.yml @@ -13,5 +13,4 @@ freebsd_12_task: - make -j${NPROC} - src/vim --version test_script: - # Runtime Indent tests do not work, run only the normal test suite - - cd src && make test + - make test diff --git a/runtime/indent/testdir/runtest.vim b/runtime/indent/testdir/runtest.vim --- a/runtime/indent/testdir/runtest.vim +++ b/runtime/indent/testdir/runtest.vim @@ -10,6 +10,7 @@ filetype indent on syn on set nowrapscan set report=9999 +set modeline au! SwapExists * call HandleSwapExists() func HandleSwapExists() diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 705, +/**/ 704, /**/ 703,