tests/run-tests.py
changeset 12643 d08bb64888bc
parent 12639 236058a65cb4
child 12677 9848a94e2ad6
--- a/tests/run-tests.py	Fri Oct 08 22:36:11 2010 -0500
+++ b/tests/run-tests.py	Fri Oct 08 22:36:11 2010 -0500
@@ -691,7 +691,12 @@
     if options.timeout > 0:
         signal.alarm(options.timeout)
 
-    ret, out = runner(testpath, options, [(testtmp, '$TESTTMP')])
+    ret, out = runner(testpath, options, [
+        (testtmp, '$TESTTMP'),
+        (':%s' % options.port, ':$HGPORT'),
+        (':%s' % (options.port + 1), ':$HGPORT1'),
+        (':%s' % (options.port + 2), ':$HGPORT2'),
+        ])
     vlog("# Ret was:", ret)
 
     if options.timeout > 0: