You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/12/16 16:07:59 UTC

svn commit: r1049998 - /subversion/trunk/subversion/tests/cmdline/stat_tests.py

Author: cmpilato
Date: Thu Dec 16 15:07:59 2010
New Revision: 1049998

URL: http://svn.apache.org/viewvc?rev=1049998&view=rev
Log:
* subversion/tests/cmdline/stat_tests.py
  (status_unversioned_dir): Take another crack at getting a regexp
    that works both for folks testing inside and outside of ${srcdir}.

Modified:
    subversion/trunk/subversion/tests/cmdline/stat_tests.py

Modified: subversion/trunk/subversion/tests/cmdline/stat_tests.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/stat_tests.py?rev=1049998&r1=1049997&r2=1049998&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/stat_tests.py (original)
+++ subversion/trunk/subversion/tests/cmdline/stat_tests.py Thu Dec 16 15:07:59 2010
@@ -964,7 +964,7 @@ def status_unversioned_dir(sbox):
   "status on unversioned dir (issue 2030)"
   sbox.build(read_only = True)
   dir = sbox.repo_dir
-  expected_err = "svn: warning: '.*/" + os.path.basename(dir) + \
+  expected_err = "svn: warning: '.*(/|\\\\)" + os.path.basename(dir) + \
                  "' is not a working copy"
   svntest.actions.run_and_verify_svn2(None, [], expected_err, 0,
                                       "status", dir, dir)