view runtime/indent/testdir/cleantest.vim @ 15505:181490db95f9

Added tag v8.1.0760 for changeset 247511eadb7a2ecee3a2d708c69c405ea546129a
author Bram Moolenaar <Bram@vim.org>
date Thu, 17 Jan 2019 13:15:07 +0100
parents 5c3ca8f7adea
children
line wrap: on
line source

" Only do this with the +eval feature
if 1

  " 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

endif

quit