tests/run-tests.sh @ 25f505f044d0

Fix a logic bug with python3 detection

Bug was introduced with previous commit.
author Strahinja Markovic <strahinja.markovic@gmail.com>
date Mon, 29 Aug 2011 14:39:27 +0200
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"