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

Re: svn commit: r21837 - in branches/incomplete-directories: . subversion/tests/cmdline

From: Kamesh Jayachandran <kamesh_at_collab.net>
Date: 2006-10-09 08:50:15 CEST

kfogel@tigris.org wrote:
> Author: kfogel
> Date: Sun Oct 8 21:19:37 2006
> New Revision: 21837
>
> Log:
> On the incomplete-directories branch:
>
> * build.conf
> (test-scripts): Add depth_tests.py to the list.
>
> * subversion/tests/cmdline/depth_tests.py: New file.
> (depth_one_same_as_nonrecursive): New helper function.
> (depth_zero_checkout, depth_one_checkout, nonrecursive_checkout):
> New test functions.
> (test_list): Run the new tests as XFail.
>
> * subversion/tests/cmdline/checkout_tests.py
> (depth_one_checkout): Remove this test, reimplement in new file above.
>
>
> Added:
> branches/incomplete-directories/subversion/tests/cmdline/depth_tests.py (contents, props changed)
> Modified:
> branches/incomplete-directories/build.conf
>
> Modified: branches/incomplete-directories/build.conf
> URL: http://svn.collab.net/viewvc/svn/branches/incomplete-directories/build.conf?pathrev=21837&r1=21836&r2=21837
> ==============================================================================
> --- branches/incomplete-directories/build.conf (original)
> +++ branches/incomplete-directories/build.conf Sun Oct 8 21:19:37 2006
> @@ -89,6 +89,7 @@
> subversion/tests/cmdline/import_tests.py
> subversion/tests/cmdline/svnsync_tests.py
> subversion/tests/cmdline/authz_tests.py
> + subversion/tests/cmdline/depth_tests.py
>
> bdb-test-scripts =
>
>
> Added: branches/incomplete-directories/subversion/tests/cmdline/depth_tests.py
> URL: http://svn.collab.net/viewvc/svn/branches/incomplete-directories/subversion/tests/cmdline/depth_tests.py?pathrev=21837
> ==============================================================================
> --- (empty file)
> +++ branches/incomplete-directories/subversion/tests/cmdline/depth_tests.py Sun Oct 8 21:19:37 2006
> @@ -0,0 +1,114 @@
> +#!/usr/bin/env python
> +#
> +# depth_tests.py: Testing that operations work as expected at
> +# various depths (depth-0, depth-1, depth-infinity).
> +#
> +# Subversion is a tool for revision control.
> +# See http://subversion.tigris.org for more information.
> +#
> +# ====================================================================
> +# Copyright (c) 2000-2006 CollabNet. All rights reserved.
>
Should it not be only 2006?
> +#
> +# This software is licensed as described in the file COPYING, which
> +# you should have received as part of this distribution. The terms
> +# are also available at http://subversion.tigris.org/license-1.html.
> +# If newer versions of this license are posted there, you may use a
> +# newer version instead, at your option.
> +#
> +######################################################################
> +
> +# General modules
> +import sys, re, os, time
>
I could not see 'sys', 're', 'time' used anywhere in the script.
> +
> +# Our testing module
> +import svntest
> +from svntest import wc, SVNAnyOutput
> +
> +# (abbreviation)
> +Skip = svntest.testcase.Skip
>
I could not see 'Skip' used anywhere in the script.
> +XFail = svntest.testcase.XFail
> +Item = wc.StateItem
>
I could not see 'Item' used anywhere in the script.
> +XFail = svntest.testcase.XFail
>
Duplicate XFail?

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Oct 9 08:49:41 2006

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.