mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.4.167
Problem: Fixes are not tested. Solution: Add a test for not autoloading on assignment. (Yukihiro Nakadaira)
This commit is contained in:
@@ -34,7 +34,8 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \
|
||||
test81.out test82.out test83.out test84.out test88.out \
|
||||
test89.out test90.out test91.out test92.out test93.out \
|
||||
test94.out test95.out test96.out test97.out test98.out \
|
||||
test99.out test100.out test101.out test102.out test103.out
|
||||
test99.out test100.out test101.out test102.out test103.out \
|
||||
test104.out
|
||||
|
||||
.SUFFIXES: .in .out
|
||||
|
||||
@@ -154,3 +155,4 @@ test100.out: test100.in
|
||||
test101.out: test101.in
|
||||
test102.out: test102.in
|
||||
test103.out: test103.in
|
||||
test104.out: test104.in
|
||||
|
@@ -33,7 +33,7 @@ SCRIPTS = test3.out test4.out test5.out test6.out test7.out \
|
||||
test84.out test85.out test86.out test87.out test88.out \
|
||||
test89.out test90.out test91.out test92.out test93.out \
|
||||
test94.out test95.out test96.out test98.out test99.out \
|
||||
test100.out test101.out test102.out test103.out
|
||||
test100.out test101.out test102.out test103.out test104.out
|
||||
|
||||
SCRIPTS32 = test50.out test70.out
|
||||
|
||||
|
@@ -53,7 +53,7 @@ SCRIPTS = test3.out test4.out test5.out test6.out test7.out \
|
||||
test84.out test85.out test86.out test87.out test88.out \
|
||||
test89.out test90.out test91.out test92.out test93.out \
|
||||
test94.out test95.out test96.out test98.out test99.out \
|
||||
test100.out test101.out test102.out test103.out
|
||||
test100.out test101.out test102.out test103.out test104.out
|
||||
|
||||
SCRIPTS32 = test50.out test70.out
|
||||
|
||||
|
@@ -35,7 +35,7 @@ SCRIPTS = test1.out test3.out test4.out test5.out test6.out \
|
||||
test81.out test82.out test83.out test84.out test88.out \
|
||||
test89.out test90.out test91.out test92.out test93.out \
|
||||
test94.out test95.out test96.out test98.out test99.out \
|
||||
test100.out test101.out test102.out test103.out
|
||||
test100.out test101.out test102.out test103.out test104.out
|
||||
|
||||
.SUFFIXES: .in .out
|
||||
|
||||
|
@@ -79,7 +79,7 @@ SCRIPT = test1.out test2.out test3.out test4.out test5.out \
|
||||
test82.out test83.out test84.out test88.out test89.out \
|
||||
test90.out test91.out test92.out test93.out test94.out \
|
||||
test95.out test96.out test97.out test98.out test99.out \
|
||||
test100.out test101.out test102.out test103.out
|
||||
test100.out test101.out test102.out test103.out test104.out
|
||||
|
||||
# Known problems:
|
||||
# Test 30: a problem around mac format - unknown reason
|
||||
|
@@ -30,7 +30,8 @@ SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
|
||||
test84.out test85.out test86.out test87.out test88.out \
|
||||
test89.out test90.out test91.out test92.out test93.out \
|
||||
test94.out test95.out test96.out test97.out test98.out \
|
||||
test99.out test100.out test101.out test102.out test103.out
|
||||
test99.out test100.out test101.out test102.out test103.out \
|
||||
test104.out
|
||||
|
||||
SCRIPTS_GUI = test16.out
|
||||
|
||||
|
1
src/testdir/sautest/autoload/Test104.vim
Normal file
1
src/testdir/sautest/autoload/Test104.vim
Normal file
@@ -0,0 +1 @@
|
||||
let Test104#numvar = 123
|
16
src/testdir/test104.in
Normal file
16
src/testdir/test104.in
Normal file
@@ -0,0 +1,16 @@
|
||||
Tests for autoload. vim: set ft=vim ts=8 :
|
||||
|
||||
STARTTEST
|
||||
:so small.vim
|
||||
:set runtimepath+=./sautest
|
||||
:" Test to not autoload when assigning. It causes internal error.
|
||||
:try
|
||||
: let Test104#numvar = function('tr')
|
||||
: $put ='OK: ' . string(Test104#numvar)
|
||||
:catch
|
||||
: $put ='FAIL: ' . v:exception
|
||||
:endtry
|
||||
:/^Results/,$wq! test.out
|
||||
ENDTEST
|
||||
|
||||
Results of test104:
|
2
src/testdir/test104.ok
Normal file
2
src/testdir/test104.ok
Normal file
@@ -0,0 +1,2 @@
|
||||
Results of test104:
|
||||
OK: function('tr')
|
@@ -738,6 +738,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
167,
|
||||
/**/
|
||||
166,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user