mailr22792 - /trunk/relax.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on April 16, 2014 - 16:08:
Author: bugman
Date: Wed Apr 16 16:08:23 2014
New Revision: 22792

URL: http://svn.gna.org/viewcvs/relax?rev=22792&view=rev
Log:
Editing of the relax command line option descriptions.


Modified:
    trunk/relax.py

Modified: trunk/relax.py
URL: 
http://svn.gna.org/viewcvs/relax/trunk/relax.py?rev=22792&r1=22791&r2=22792&view=diff
==============================================================================
--- trunk/relax.py      (original)
+++ trunk/relax.py      Wed Apr 16 16:08:23 2014
@@ -292,15 +292,15 @@
         # Recognised command line options for IO redirection.
         group = OptionGroup(parser, 'IO redirection options')
         group.add_option('-l', '--log', action='store', type='string', 
dest='log', help='log relax output to the file LOG_FILE', metavar='LOG_FILE')
-        group.add_option('-t', '--tee', action='store', type='string', 
dest='tee', help='tee relax output to stdout and the file LOG_FILE', 
metavar='LOG_FILE')
+        group.add_option('-t', '--tee', action='store', type='string', 
dest='tee', help='tee relax output to both stdout and the file LOG_FILE', 
metavar='LOG_FILE')
         parser.add_option_group(group)
 
         # Recognised command line options for the test suite.
         group = OptionGroup(parser, 'Test suite options')
-        group.add_option('-x', '--test-suite', action='store_true', 
dest='test_suite', default=0, help='execute the relax test suite')
-        group.add_option('-s', '--system-tests', action='store_true', 
dest='system_tests', default=0, help='execute the relax system/functional 
tests (part of the test suite)')
-        group.add_option('-u', '--unit-tests', action='store_true', 
dest='unit_tests', default=0, help='execute the relax unit tests (part of the 
test suite)')
-        group.add_option('--gui-tests', action='store_true', 
dest='gui_tests', default=0, help='execute the relax GUI tests (part of the 
test suite)')
+        group.add_option('-x', '--test-suite', action='store_true', 
dest='test_suite', default=0, help='execute the full relax test suite')
+        group.add_option('-s', '--system-tests', action='store_true', 
dest='system_tests', default=0, help='execute the system/functional tests')
+        group.add_option('-u', '--unit-tests', action='store_true', 
dest='unit_tests', default=0, help='execute the unit tests')
+        group.add_option('--gui-tests', action='store_true', 
dest='gui_tests', default=0, help='execute the GUI tests')
         group.add_option('--time', action='store_true', dest='tt', 
default=0, help='enable the timing of individual tests in the test suite')
         parser.add_option_group(group)
 




Related Messages


Powered by MHonArc, Updated Wed Apr 16 16:40:01 2014