tests/run-tests.sh @ 7ec49c438c41

Fix pyfile call for paths with spaces
author David Fisher <ddfisher@dropbox.com>
date Wed, 27 Aug 2014 13:13:45 -0700
parents dbd4f2ec3861
children (none)
#!/usr/bin/env bash

set -e

if [[ $# -eq 0 ]]
then
    TESTS="`ls *.vim | tr "\n" ' '`"
else
    IFS=' '
    TESTS="$*"
fi

vim -u vimrc_test -c ":UTRun $TESTS"