run-tests: standardize on --foo instead of -f/--foo
authorMartin Geisler <mg@lazybytes.net>
Fri, 28 Aug 2009 20:53:03 +0200
changeset 9408 70bf7f853adc
parent 9407 19d91a23458c
child 9409 57157a224037
run-tests: standardize on --foo instead of -f/--foo We write -f/--foo in Mercurial help texts (docstrings), but I think it looks strange in error messages.
tests/run-tests.py
--- a/tests/run-tests.py	Fri Aug 28 20:50:54 2009 +0200
+++ b/tests/run-tests.py	Fri Aug 28 20:53:03 2009 +0200
@@ -176,13 +176,13 @@
                 raise
 
     if options.jobs < 1:
-        parser.error('-j/--jobs must be positive')
+        parser.error('--jobs must be positive')
     if options.interactive and options.jobs > 1:
         print '(--interactive overrides --jobs)'
         options.jobs = 1
     if options.py3k_warnings:
         if sys.version_info[:2] < (2, 6) or sys.version_info[:2] >= (3, 0):
-            parser.error('Py3k warnings switch can only be used on Python 2.6+')
+            parser.error('--py3k-warnings can only be used on Python 2.6+')
 
     return (options, args)