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

Re: [PATCH] Re: Implement support for 'make check' variants

From: Daniel Shahaf <d.s_at_daniel.shahaf.name>
Date: Wed, 29 Jun 2011 03:39:58 +0300

Reads fine.

I'd like to test this patch (perhaps later this week?).

Would
    make davautocheck ENVVAR=short_circuit
be a better interface?

Noorul Islam K M wrote on Tue, Jun 28, 2011 at 12:03:36 +0530:
> Index: Makefile.in
> ===================================================================
> --- Makefile.in (revision 1140431)
> +++ Makefile.in (working copy)
> @@ -501,7 +501,8 @@
> # Automatically configure and run Apache httpd on a random port, and then
> # run make check.
> davautocheck: bin $(TEST_DEPS) @BDB_TEST_DEPS@ apache-mod
> - @# Takes MODULE_PATH and USE_HTTPV1 in the environment.
> + @# Takes MODULE_PATH, USE_HTTPV1 and USE_AUTHZ_SHORT_CIRCUIT in the
> + @# environment.
> @APXS=$(APXS) bash $(top_srcdir)/subversion/tests/cmdline/davautocheck.sh
>
> # First, run:
> Index: subversion/tests/cmdline/davautocheck.sh
> ===================================================================
> --- subversion/tests/cmdline/davautocheck.sh (revision 1140431)
> +++ subversion/tests/cmdline/davautocheck.sh (working copy)
> @@ -67,6 +67,9 @@
> #
> # To prevent the server from advertising httpv2, pass USE_HTTPV1 in
> # the environment.
> +#
> +# To use "short_circuit" value for "SvnPathAuthz" directive set
> +# USE_AUTHZ_SHORT_CIRCUIT=yes in the environment.
> #
> # Passing --no-tests as argv[1] will have the script start a server
> # but not run any tests.
> @@ -160,6 +163,12 @@
> ADVERTISE_V2_PROTOCOL=off
> fi
>
> +# Pick up $USE_AUTHZ_SHORT_CIRCUIT
> +SVN_PATH_AUTHZ=""
> +if [ ${USE_AUTHZ_SHORT_CIRCUIT:+set} ]; then
> + SVN_PATH_AUTHZ="SVNPathAuthz short_circuit"
> +fi
Received on 2011-06-29 02:40:45 CEST

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.