summaryrefslogtreecommitdiffstats
path: root/src/testdir/test97.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/testdir/test97.in')
-rw-r--r--src/testdir/test97.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/testdir/test97.in b/src/testdir/test97.in
deleted file mode 100644
index 5a4cb1e17c..0000000000
--- a/src/testdir/test97.in
+++ /dev/null
@@ -1,23 +0,0 @@
-Test whether glob()/globpath() return correct results with certain escaped
-characters.
-
-STARTTEST
-:so small.vim
-:" make sure glob() doesn't use the shell
-:set shell=doesnotexist
-:" consistent sorting of file names
-:set nofileignorecase
-:e! test.out
-:$put =glob('Xxx\{')
-:$put =glob('Xxx\$')
-:w! Xxx{
-:w! Xxx\$
-:$put =glob('Xxx\{')
-:$put =glob('Xxx\$')
-:"
-:$put =string(globpath('sautest/autoload', '*.vim'))
-:$put =string(globpath('sautest/autoload', '*.vim', 0, 1))
-:w
-:qa!
-ENDTEST
-