tests/run-tests.sh @ f5061b732d90

added gitignore with data from hgignore
author Theodore Robert Campbell Jr <trcjr@networknazi.org>
date Sun, 15 May 2011 12:43:01 -0400
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"