~ubuntu-branches/debian/sid/subversion/sid

« back to all changes in this revision

Viewing changes to subversion/tests/cmdline/wc_tests.py

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2014-05-20 22:45:32 UTC
  • mfrom: (0.2.12)
  • Revision ID: package-import@ubuntu.com-20140520224532-4fec3gohdzyy692g
Tags: 1.8.9-1
* New upstream release
* Merge changes from Ubuntu:
  - Add DEB-8 test for Apache functionality
  - debian/rules: Create pot file on build.
  - debian/rules: Ensure the doxygen output directory exists
  - Move svn2cl to subversion-tools' Suggests on Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
  sbox.simple_append('A/B/kappa', 'xyz', True)
119
119
  sbox.simple_add('Z/B/kappa')
120
120
 
 
121
def is_posix_os_and_not_root():
 
122
  if not svntest.main.is_posix_os():
 
123
    return False
 
124
  return os.getuid() != 0
 
125
 
121
126
@Issue(4118)
122
 
@SkipUnless(svntest.main.is_posix_os)
 
127
@SkipUnless(is_posix_os_and_not_root)
123
128
def status_with_inaccessible_wc_db(sbox):
124
129
  """inaccessible .svn/wc.db"""
125
130