tests/test-lock-badness.t
author Matt Mackall <mpm@selenic.com>
Thu, 14 Nov 2013 18:07:43 -0600
changeset 20008 e54a078153f7
parent 15443 a1914d214579
child 20380 c697b70f295f
permissions -rw-r--r--
tests: skip tests that require not having root (issue4089) This adds a new root hghave to test against. Almost all of these are a subset of unix-permissions, but that is also used for checking exec bit handling.

#if unix-permissions no-root
  $ hg init a
  $ echo a > a/a
  $ hg -R a ci -A -m a
  adding a

  $ hg clone a b
  updating to branch default
  1 files updated, 0 files merged, 0 files removed, 0 files unresolved

  $ echo b > b/b
  $ hg -R b ci -A -m b
  adding b

  $ chmod 100 a/.hg/store

  $ hg -R b push a
  pushing to a
  abort: could not lock repository a: Permission denied
  [255]

  $ chmod 700 a/.hg/store
#endif