aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir/test_shell.vim
diff options
context:
space:
mode:
Diffstat (limited to 'test/old/testdir/test_shell.vim')
-rw-r--r--test/old/testdir/test_shell.vim3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/old/testdir/test_shell.vim b/test/old/testdir/test_shell.vim
index c2320d8f39..9499462a70 100644
--- a/test/old/testdir/test_shell.vim
+++ b/test/old/testdir/test_shell.vim
@@ -188,7 +188,7 @@ func Test_shellxquote()
let save_sxq = &shellxquote
let save_sxe = &shellxescape
- call writefile(['#!/bin/sh', 'echo "Cmd: [$*]" > Xlog'], 'Xtestshell')
+ call writefile(['#!/bin/sh', 'echo "Cmd: [$*]" > Xlog'], 'Xtestshell', 'D')
call setfperm('Xtestshell', "r-x------")
set shell=./Xtestshell
@@ -212,7 +212,6 @@ func Test_shellxquote()
let &shell = save_shell
let &shellxquote = save_sxq
let &shellxescape = save_sxe
- call delete('Xtestshell')
call delete('Xlog')
endfunc