# HG changeset patch
# User Mads Kiilerich <mads@kiilerich.com>
# Date 1326502587 -3600
#      Sat Jan 14 01:56:27 2012 +0100
# Branch stable
# Node ID d7a34c07e69b1130930a45c445eb365fae1642b0
# Parent  af289d6cd422f604d854205df8890aa287524221
run-tests: expand user in --with-hg

This makes it possible to run:
  $ ./run-tests.py --with-hg=~/hg-bin/hg

diff --git a/tests/run-tests.py b/tests/run-tests.py
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -200,6 +200,7 @@
         options.pure = True
 
     if options.with_hg:
+        options.with_hg = os.path.expanduser(options.with_hg)
         if not (os.path.isfile(options.with_hg) and
                 os.access(options.with_hg, os.X_OK)):
             parser.error('--with-hg must specify an executable hg script')