view tests/test-sqlite3-permissions.t @ 6316:b1d1f4ade142

evolve: don't embed graft data when completing interrupted evolve operations This data shows in TortoiseHg, and is a bit awkward since it wasn't added before in the non interrupted case. It originated before 823031b51d81, when the implementation changed away from using the graft command. According to @marmoute, unconditionally adding `source` served as noise to create a new hash and prevent a cycle, so use the same key (`rebase_source`) as would happen in the uninterrupted case (as demonstrated by the first change in test-stabilize-conflict.t).
author Matt Harbison <matt_harbison@yahoo.com>
date Fri, 07 Oct 2022 18:14:58 -0400
parents 2570d2d4a268
children
line wrap: on
line source

#require unix-permissions

Test that sqlite3 cache files inherit the permissions of the .hg
directory like other cache files.

  $ . $TESTDIR/testlib/common.sh

  $ cat << EOF >> $HGRCPATH
  > [extensions]
  > evolve =
  > EOF
  $ hg init test
  $ cd test
  $ chmod 700 .hg
  $ hg debugupdatecache
  $ ls -l .hg/cache/evoext_*.sqlite
  -rw------- * .hg/cache/evoext_obshashrange_v2.sqlite (glob)
  -rw------- * .hg/cache/evoext_stablerange_v2.sqlite (glob)
  $ rm -r .hg/cache
  $ chmod 770 .hg
  $ hg debugupdatecache
  $ ls -l .hg/cache/evoext_*.sqlite
  -rw-rw---- * .hg/cache/evoext_obshashrange_v2.sqlite (glob)
  -rw-rw---- * .hg/cache/evoext_stablerange_v2.sqlite (glob)
  $ rm -r .hg/cache
  $ chmod 774 .hg
  $ hg debugupdatecache
  $ ls -l .hg/cache/evoext_*.sqlite
  -rw-rw-r-- * .hg/cache/evoext_obshashrange_v2.sqlite (glob)
  -rw-rw-r-- * .hg/cache/evoext_stablerange_v2.sqlite (glob)