Mercurial > evolve
view tests/test-sqlite3-permissions.t @ 5779:96ed73c5c6ca
doc: remove .strip() for a docstring
This shouldn't be necessary, and by stripping it (and removing the trailing
newline) it causes issues with Mercurial's doc/gendoc.py's RST output, since
there's no newline separating this string and the thing that comes after it.
I believe that the `.strip()` has been in there since the beginning, but I have
not found a reason for its existence. It's possible that this was required in
older Mercurial versions, but is no longer required? Notably, the tests (which
include an invocation of `hg help evolution`) still pass with this change.
### Alternatives considered
- Making gendoc.py robust against this. This was rejected since there's no need
for the .strip() as far as I can tell, and this is the only case I know of
that would need such logic.
author | Kyle Lippincott <spectral@google.com> |
---|---|
date | Wed, 17 Feb 2021 12:00:45 -0800 |
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)