run-tests: use type of default to convert environment variable
Before, defaults could only be integers, they can now also be strings,
floats and what have you.
--- a/tests/run-tests.py Thu May 05 19:29:02 2011 +0200
+++ b/tests/run-tests.py Thu May 05 20:03:43 2011 +0200
@@ -168,8 +168,8 @@
parser.add_option('--extra-config-opt', action="append",
help='set the given config opt in the test hgrc')
- for option, default in defaults.items():
- defaults[option] = int(os.environ.get(*default))
+ for option, (envvar, default) in defaults.items():
+ defaults[option] = type(default)(os.environ.get(envvar, default))
parser.set_defaults(**defaults)
(options, args) = parser.parse_args()