diff options
author | Lucas Hoffmann <l-m-h@web.de> | 2015-05-15 19:03:44 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-09-18 16:38:10 +0200 |
commit | 4a6b4bbf931bee14717ae1c30331e85758a3080e (patch) | |
tree | e3375ff39c981e3bd9465b13673380f52cb6f991 /src | |
parent | 7b6786f6f9b866faaefcd6e87d440f3f9b8c1fc5 (diff) | |
download | rneovim-4a6b4bbf931bee14717ae1c30331e85758a3080e.tar.gz rneovim-4a6b4bbf931bee14717ae1c30331e85758a3080e.tar.bz2 rneovim-4a6b4bbf931bee14717ae1c30331e85758a3080e.zip |
tests: migrate legacy test 12. #4196
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/Makefile | 1 | ||||
-rw-r--r-- | src/nvim/testdir/test12.in | 50 | ||||
-rw-r--r-- | src/nvim/testdir/test12.ok | 10 |
3 files changed, 0 insertions, 61 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index ff0f729460..10d26bd8cf 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -9,7 +9,6 @@ SCRIPTSOURCE := ../../../runtime SCRIPTS := \ test8.out \ - test12.out \ test13.out \ test14.out \ test17.out \ diff --git a/src/nvim/testdir/test12.in b/src/nvim/testdir/test12.in deleted file mode 100644 index 0c0623e5d4..0000000000 --- a/src/nvim/testdir/test12.in +++ /dev/null @@ -1,50 +0,0 @@ -Tests for 'directory' option. -- ".", in same dir as file -- "./dir", in directory relative to file -- "dir", in directory relative to current dir - -STARTTEST -:set dir=.,~ -:/start of testfile/,/end of testfile/w! Xtest1 -:" do an ls of the current dir to find the swap file (should not be there) -:if has("unix") -: !ls .X*.swp >test.out -:else -: r !ls X*.swp >test.out -:endif -:!echo first line >>test.out -:e Xtest1 -:if has("unix") -:" Do an ls of the current dir to find the swap file, remove the leading dot -:" to make the result the same for all systems. -: r!ls .X*.swp -: s/\.*X/X/ -: .w >>test.out -: undo -:else -: !ls X*.swp >>test.out -:endif -:!echo under Xtest1.swp >>test.out -:!mkdir Xtest2 -:set dir=./Xtest2,.,~ -:e Xtest1 -:!ls X*.swp >>test.out -:!echo under under >>test.out -:!ls Xtest2 >>test.out -:!echo under Xtest1.swp >>test.out -:!mkdir Xtest.je -:/start of testfile/,/end of testfile/w! Xtest2/Xtest3 -:set dir=Xtest.je,~ -:e Xtest2/Xtest3 -:swap -:!ls Xtest2 >>test.out -:!echo under Xtest3 >>test.out -:!ls Xtest.je >>test.out -:!echo under Xtest3.swp >>test.out -:qa! -ENDTEST - -start of testfile -line 2 Abcdefghij -line 3 Abcdefghij -end of testfile diff --git a/src/nvim/testdir/test12.ok b/src/nvim/testdir/test12.ok deleted file mode 100644 index 605623b117..0000000000 --- a/src/nvim/testdir/test12.ok +++ /dev/null @@ -1,10 +0,0 @@ -first line -Xtest1.swp -under Xtest1.swp -under under -Xtest1.swp -under Xtest1.swp -Xtest3 -under Xtest3 -Xtest3.swp -under Xtest3.swp |