view src/testdir/test_options.in @ 9782:d6a69f968249 v7.4.2166

commit https://github.com/vim/vim/commit/328604307ba26e3182eb0b096e820f9cd346c2dd Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 6 19:24:23 2016 +0200 patch 7.4.2166 Problem: Small build can't run startup test. Solution: Skip the test.
author Christian Brabandt <cb@256bit.org>
date Sat, 06 Aug 2016 19:30:06 +0200
parents 55c67e16e4fd
children
line wrap: on
line source

Test for ":options".

STARTTEST
:so small.vim
:let caught = 'ok'
:try
  :options
:catch 
  :let caught = v:throwpoint . "\n" . v:exception
:endtry
:buf 1
:$put =caught
:"
:" Test that changing 'path' keeps two commas.
:set path=foo,,bar
:set path-=bar
:set path+=bar
:$put =&path
:/^result/,$w! test.out
:qa!
ENDTEST

result