summaryrefslogtreecommitdiff
path: root/runtime/indent/testdir/cleantest.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/indent/testdir/cleantest.vim')
-rw-r--r--runtime/indent/testdir/cleantest.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/indent/testdir/cleantest.vim b/runtime/indent/testdir/cleantest.vim
new file mode 100644
index 000000000..909cf812c
--- /dev/null
+++ b/runtime/indent/testdir/cleantest.vim
@@ -0,0 +1,6 @@
+" Deletes all the test output files: *.fail and *.out
+for fname in glob('testdir/*.out', 1, 1) + glob('testdir/*.fail', 1, 1)
+ call delete(fname)
+endfor
+
+quit