tests/run-tests.sh @ b059a86fd333

Defer warning about incompatible Python.

This uses the GundoDidNotLoad approach from 8de0b4ce478380e5c637 also
for the "Gundo requires that Vim be compiled with Python 2.4+" error.

Also retab the original GundoDidNotLoad code block and fix the English.
author Daniel Hahler <git@thequod.de>
date Wed, 09 Mar 2011 22:57:39 +0100
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"