[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: rev 5331 - trunk/subversion/tests/clients/cmdline/svntest

From: Branko Čibej <brane_at_xbc.nu>
Date: 2003-03-14 21:51:54 CET

kfogel@tigris.org wrote:

>Author: kfogel
>Date: Fri Mar 14 10:27:46 2003
>New Revision: 5331
>
>Modified:
> trunk/subversion/tests/clients/cmdline/svntest/main.py
>Log:
>Make Python tests quiet by default and verbose by request:
>
>* subversion/tests/clients/cmdline/svntest/main.py
> (verbose_mode): New global, replaces quiet_mode.
> (run_tests): Look for '-v' option, not '-q'.
> (everywhere): Use verbose_mode instead of quiet_mode, reverse sense
> of conditionals.
>
>
I think run-tests.py should now send '-v' to the Python tests, so that
the log files always get the verbose output. Like this:

Index: run_tests.py
===================================================================
--- run_tests.py (revision 5309)
+++ run_tests.py (working copy)
@@ -74,7 +74,8 @@
     if progbase[-3:] == '.py':
       progname = self.python
       cmdline = [quote(progname),
- quote(os.path.join(self.srcdir, prog))]
+ quote(os.path.join(self.srcdir, prog)),
+ '-v']
       if self.base_url is not None:
         cmdline.append('--url')
         cmdline.append(quote(self.base_url))

-- 
Brane Čibej   <brane_at_xbc.nu>   http://www.xbc.nu/brane/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Mar 14 21:54:45 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.