run-tests: use type of default to convert environment variable
authorMartin Geisler <mg@lazybytes.net>
Thu, 05 May 2011 20:03:43 +0200
changeset 14201 57e04ded3da4
parent 14200 dc733eec9169
child 14202 b68a41420397
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.
tests/run-tests.py
--- 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()