tests/run-tests.sh @ ea53db23b780

Fixed an issue with return syntax that breaks in python 2.4
author Matthew Bell <m.dylan.bell@gmail.com>
date Sat, 27 Aug 2011 16:38:43 -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"