diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-07 22:33:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-07 22:33:32 +0100 |
commit | e8512d7fedbddd8d464b2c589e6ba5ab9a41bc78 (patch) | |
tree | 40258098e66e89468e1659f62ec70112de269bef /src/testdir/gen_opt_test.vim | |
parent | 65408f7dfbd4bb50d740a8b8f2171080571223f2 (diff) | |
download | vim-git-e8512d7fedbddd8d464b2c589e6ba5ab9a41bc78.tar.gz |
patch 8.0.0429: options test does not always test everythingv8.0.0429
Problem: Options test does not always test everything.
Solution: Fix dependency for opt_test.vim. Give a message when opt_test.vim
was not found.
Diffstat (limited to 'src/testdir/gen_opt_test.vim')
-rw-r--r-- | src/testdir/gen_opt_test.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim index 07a744bc0..1187dd596 100644 --- a/src/testdir/gen_opt_test.vim +++ b/src/testdir/gen_opt_test.vim @@ -13,7 +13,7 @@ let script = [ \ 'let save_term = &term', \ ] -edit option.c +edit /#define p_term let end = line('.') @@ -197,7 +197,7 @@ call add(script, 'let &term = save_term') call add(script, 'let &columns = save_columns') call add(script, 'let &lines = save_lines') -call writefile(script, 'testdir/opt_test.vim') +call writefile(script, 'opt_test.vim') endif |