author | Pierre-Yves David <pierre-yves.david@octobus.net> |
Sat, 02 Oct 2021 11:39:57 +0200 | |
changeset 48149 | 25836b0029f5 |
parent 48083 | bf8837e3d7ce |
child 48235 | b4f83c9e7905 |
permissions | -rw-r--r-- |
37416
7542e97c7867
tests: conditionalize tests for various repo features
Gregory Szorc <gregory.szorc@gmail.com>
parents:
33428
diff
changeset
|
1 |
#require unix-permissions no-root reporevlogstore |
15443
a1914d214579
tests: use 'hghave unix-permissions' for tests that really use chmod
Mads Kiilerich <mads@kiilerich.com>
parents:
12640
diff
changeset
|
2 |
|
48083
bf8837e3d7ce
dirstate: Remove the flat Rust DirstateMap implementation
Simon Sapin <simon.sapin@octobus.net>
parents:
47292
diff
changeset
|
3 |
#testcases dirstate-v1 dirstate-v2 |
47143
93eb6c8035a9
dirstate-tree: Add a dirstate-v1-tree variant of some tests
Simon Sapin <simon.sapin@octobus.net>
parents:
41442
diff
changeset
|
4 |
|
47292
6763913fa175
dirstate-v2: Add a variant of some tests, that uses the new format
Simon Sapin <simon.sapin@octobus.net>
parents:
47143
diff
changeset
|
5 |
#if dirstate-v2 |
6763913fa175
dirstate-v2: Add a variant of some tests, that uses the new format
Simon Sapin <simon.sapin@octobus.net>
parents:
47143
diff
changeset
|
6 |
#require rust |
6763913fa175
dirstate-v2: Add a variant of some tests, that uses the new format
Simon Sapin <simon.sapin@octobus.net>
parents:
47143
diff
changeset
|
7 |
$ echo '[format]' >> $HGRCPATH |
6763913fa175
dirstate-v2: Add a variant of some tests, that uses the new format
Simon Sapin <simon.sapin@octobus.net>
parents:
47143
diff
changeset
|
8 |
$ echo 'exp-dirstate-v2=1' >> $HGRCPATH |
6763913fa175
dirstate-v2: Add a variant of some tests, that uses the new format
Simon Sapin <simon.sapin@octobus.net>
parents:
47143
diff
changeset
|
9 |
#endif |
6763913fa175
dirstate-v2: Add a variant of some tests, that uses the new format
Simon Sapin <simon.sapin@octobus.net>
parents:
47143
diff
changeset
|
10 |
|
12279 | 11 |
$ hg init t |
12 |
$ cd t |
|
13 |
||
14 |
$ echo foo > a |
|
15 |
$ hg add a |
|
16 |
||
17 |
$ hg commit -m "1" |
|
18 |
||
19 |
$ hg verify |
|
20 |
checking changesets |
|
21 |
checking manifests |
|
22 |
crosschecking files in changesets and manifests |
|
23 |
checking files |
|
39506
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37416
diff
changeset
|
24 |
checked 1 changesets with 1 changes to 1 files |
12279 | 25 |
|
26 |
$ chmod -r .hg/store/data/a.i |
|
27 |
||
12365
22f3353bcc36
tests: cleanup exit code handling in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12279
diff
changeset
|
28 |
$ hg verify |
12279 | 29 |
checking changesets |
30 |
checking manifests |
|
31 |
crosschecking files in changesets and manifests |
|
32 |
checking files |
|
41442
b6673e9bdcf6
dispatch: quote filename in IOError as well
Yuya Nishihara <yuya@tcha.org>
parents:
39506
diff
changeset
|
33 |
abort: Permission denied: '$TESTTMP/t/.hg/store/data/a.i' |
12365
22f3353bcc36
tests: cleanup exit code handling in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12279
diff
changeset
|
34 |
[255] |
12279 | 35 |
|
36 |
$ chmod +r .hg/store/data/a.i |
|
37 |
||
12365
22f3353bcc36
tests: cleanup exit code handling in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12279
diff
changeset
|
38 |
$ hg verify |
12279 | 39 |
checking changesets |
40 |
checking manifests |
|
41 |
crosschecking files in changesets and manifests |
|
42 |
checking files |
|
39506
f1186c292d03
verify: make output less confusing (issue5924)
Meirambek Omyrzak <meirambek77@gmail.com>
parents:
37416
diff
changeset
|
43 |
checked 1 changesets with 1 changes to 1 files |
1497 | 44 |
|
12279 | 45 |
$ chmod -w .hg/store/data/a.i |
46 |
||
47 |
$ echo barber > a |
|
12365
22f3353bcc36
tests: cleanup exit code handling in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12279
diff
changeset
|
48 |
$ hg commit -m "2" |
12279 | 49 |
trouble committing a! |
41442
b6673e9bdcf6
dispatch: quote filename in IOError as well
Yuya Nishihara <yuya@tcha.org>
parents:
39506
diff
changeset
|
50 |
abort: Permission denied: '$TESTTMP/t/.hg/store/data/a.i' |
12365
22f3353bcc36
tests: cleanup exit code handling in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12279
diff
changeset
|
51 |
[255] |
12279 | 52 |
|
53 |
$ chmod -w . |
|
54 |
||
55 |
$ hg diff --nodates |
|
56 |
diff -r 2a18120dc1c9 a |
|
57 |
--- a/a |
|
58 |
+++ b/a |
|
59 |
@@ -1,1 +1,1 @@ |
|
60 |
-foo |
|
61 |
+barber |
|
7099
6f750e76fb46
dirstate.walk: skip unreadable directories (issue1213)
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
5519
diff
changeset
|
62 |
|
12279 | 63 |
$ chmod +w . |
64 |
||
65 |
$ chmod +w .hg/store/data/a.i |
|
66 |
$ mkdir dir |
|
67 |
$ touch dir/a |
|
68 |
$ hg status |
|
69 |
M a |
|
70 |
? dir/a |
|
71 |
$ chmod -rx dir |
|
33428
435f63d12475
tests: avoid tests related to directory permission if running with fsmonitor
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
22047
diff
changeset
|
72 |
|
435f63d12475
tests: avoid tests related to directory permission if running with fsmonitor
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
22047
diff
changeset
|
73 |
#if no-fsmonitor |
435f63d12475
tests: avoid tests related to directory permission if running with fsmonitor
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
22047
diff
changeset
|
74 |
|
435f63d12475
tests: avoid tests related to directory permission if running with fsmonitor
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
22047
diff
changeset
|
75 |
(fsmonitor makes "hg status" avoid accessing to "dir") |
435f63d12475
tests: avoid tests related to directory permission if running with fsmonitor
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
22047
diff
changeset
|
76 |
|
12279 | 77 |
$ hg status |
78 |
dir: Permission denied |
|
79 |
M a |
|
80 |
||
33428
435f63d12475
tests: avoid tests related to directory permission if running with fsmonitor
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
22047
diff
changeset
|
81 |
#endif |
435f63d12475
tests: avoid tests related to directory permission if running with fsmonitor
FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
parents:
22047
diff
changeset
|
82 |
|
12279 | 83 |
Reenable perm to allow deletion: |
84 |
||
85 |
$ chmod +rx dir |
|
86 |
||
16913
f2719b387380
tests: add missing trailing 'cd ..'
Mads Kiilerich <mads@kiilerich.com>
parents:
15443
diff
changeset
|
87 |
$ cd .. |