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

Re: svn commit: r23264 - in trunk/subversion: libsvn_subr svnserve

From: Lieven Govaerts <svnlgo_at_mobsol.be>
Date: 2007-01-27 10:14:07 CET

This revision is making the automated builds fail. Problem is that the
output of svn* --help, svn --version etc. is tested in getopt_tests.py,
and those tests literally (case sensitive) compare the textual output.

Lieven
nori@tigris.org wrote:
> Author: nori
> Date: Fri Jan 26 19:31:07 2007
> New Revision: 23264
>
> Log:
> Make all the command line option arguments written in uppercase as "ARG".
>
> * subversion/libsvn_subr/opt.c (svn_opt_format_option):
> * subversion/svnserve/main.c (svnserve__options):
> Make "arg" uppercase.
>
>
> Modified:
> trunk/subversion/libsvn_subr/opt.c
> trunk/subversion/svnserve/main.c
>
> Modified: trunk/subversion/libsvn_subr/opt.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/libsvn_subr/opt.c?pathrev=23264&r1=23263&r2=23264
> ==============================================================================
> --- trunk/subversion/libsvn_subr/opt.c (original)
> +++ trunk/subversion/libsvn_subr/opt.c Fri Jan 26 19:31:07 2007
> @@ -421,7 +421,7 @@
> opts = apr_psprintf(pool, "--%s", opt->name);
>
> if (opt->has_arg)
> - opts = apr_pstrcat(pool, opts, _(" arg"), NULL);
> + opts = apr_pstrcat(pool, opts, _(" ARG"), NULL);
>
> if (doc)
> opts = apr_psprintf(pool, "%-24s : %s", opts, _(opt->description));
>
> Modified: trunk/subversion/svnserve/main.c
> URL: http://svn.collab.net/viewvc/svn/trunk/subversion/svnserve/main.c?pathrev=23264&r1=23263&r2=23264
> ==============================================================================
> --- trunk/subversion/svnserve/main.c (original)
> +++ trunk/subversion/svnserve/main.c Fri Jan 26 19:31:07 2007
> @@ -160,7 +160,7 @@
> #endif
> {"listen-once", 'X', 0, N_("listen once (useful for debugging)")},
> {"pid-file", SVNSERVE_OPT_PID_FILE, 1,
> - N_("write server process ID to file arg")},
> + N_("write server process ID to file ARG")},
> #ifdef WIN32
> {"service", SVNSERVE_OPT_SERVICE, 0,
> N_("run as a windows service (SCM only)")},
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: svn-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: svn-help@subversion.tigris.org
>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Jan 27 10:14:28 2007

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.