#!/bin/sh
#
# Note: this doesn't test the installed mercurial-git.  It's better
# than nothing though.

set -e

# Blacklist test-encoding
BLACKLISTED=$(mktemp --tmpdir mercurial-git_testsuite_blacklist.XXXXXXXX)
echo test-encoding.t > $BLACKLISTED

exec make tests TESTFLAGS="--blacklist=$BLACKLISTED"
