summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2013-07-01 21:00:35 +0200
committerBram Moolenaar <bram@vim.org>2013-07-01 21:00:35 +0200
commit5e59a2cc5bab0e4cc9ff56e74a69ff394a148e97 (patch)
treec552121cc494424c61072534d221c3e31509e9d0
parent661175e047f0156b59321a9cdcf735fa37df2fb0 (diff)
downloadvim-5e59a2cc5bab0e4cc9ff56e74a69ff394a148e97.tar.gz
updated for version 7.3.1283v7.3.1283v7-3-1283
Problem: Test 71 fails on MS-Windows. Solution: Put the binary data in a separate file. (Ken Takata)
-rw-r--r--src/testdir/test71.in18
-rw-r--r--src/testdir/test71a.in14
-rw-r--r--src/version.c2
3 files changed, 21 insertions, 13 deletions
diff --git a/src/testdir/test71.in b/src/testdir/test71.in
index c7e0714e..155fd413 100644
--- a/src/testdir/test71.in
+++ b/src/testdir/test71.in
@@ -1,7 +1,12 @@
Test for encryption.
+The test data is in another file to avoid problems with 'encoding', especially
+cp932.
STARTTEST
:so small.vim
+:set enc=latin1
+:bwipe!
+:r test71a.in
:/^start of text/+1
:let text_lines = getline('.', line('.') + 2)
:/^start of cm=zip bytes/+1
@@ -60,16 +65,3 @@ barbar
:qa!
ENDTEST
-start of text
-01234567890123456789012345678901234567
-line 2 foo bar blah
-line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-end of text
-
-start of cm=zip bytes
-VimCrypt~01!lV'Þ}Mg ê£V©çE#3Ž2Ué—
-end of cm=zip bytes
-
-start of cm=blowfish bytes
-VimCrypt~02!k)¾—#ÝSœõ=ºàÈ#¥M´†JÃAÍ¥M´†!€›õáÒ‚˜÷ Ú
-end of cm=blowfish bytes
diff --git a/src/testdir/test71a.in b/src/testdir/test71a.in
new file mode 100644
index 00000000..85bd22cd
--- /dev/null
+++ b/src/testdir/test71a.in
@@ -0,0 +1,14 @@
+
+start of text
+01234567890123456789012345678901234567
+line 2 foo bar blah
+line 3 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
+end of text
+
+start of cm=zip bytes
+VimCrypt~01!lV'Þ}Mg ê£V©çE#3Ž2Ué—
+end of cm=zip bytes
+
+start of cm=blowfish bytes
+VimCrypt~02!k)¾—#ÝSœõ=ºàÈ#¥M´†JÃAÍ¥M´†!€›õáÒ‚˜÷ Ú
+end of cm=blowfish bytes
diff --git a/src/version.c b/src/version.c
index 9647ed3e..4b0e3400 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1283,
+/**/
1282,
/**/
1281,