Mercurial > hg
comparison tests/test-clone.t @ 30446:b324b4e431e5
posix: give checkexec a fast path; keep the check files and test read only
Before, Mercurial would create a new temporary file every time, stat it, change
its exec mode, stat it again, and delete it. Most of this dance was done to
handle the rare and not-so-essential case of VFAT mounts on unix. The cost of
that was paid by the much more common and important case of using normal file
systems.
Instead, try to create and preserve .hg/cache/checkisexec and
.hg/cache/checknoexec with and without exec flag set. If the files exist and
have correct exec flags set, we can conclude that that file system supports the
exec flag. Best case, the whole exec check can thus be done with two stat
calls. Worst case, we delete the wrong files and check as usual. That will be
because temporary loss of exec bit or on file systems without support for the
exec bit. In that case we check as we did before, with the additional overhead
of one extra stat call.
It is possible that this different test algorithm in some cases on odd file
systems will give different behaviour. Again, I think it will be rare and
special cases and I think it is worth the risk.
test-clone.t happens to show the situation where checkisexec is left behind
from the old style check, while checknoexec only will be created next time a
exec check will be performed.
author | Mads Kiilerich <madski@unity3d.com> |
---|---|
date | Wed, 14 Jan 2015 01:15:26 +0100 |
parents | bbbf6bbbd05f |
children | 8836f13e3c5b |
comparison
equal
deleted
inserted
replaced
30445:1ce4c2062ab0 | 30446:b324b4e431e5 |
---|---|
29 | 29 |
30 $ hg branches | 30 $ hg branches |
31 default 10:a7949464abda | 31 default 10:a7949464abda |
32 $ ls .hg/cache | 32 $ ls .hg/cache |
33 branch2-served | 33 branch2-served |
34 checkisexec | |
35 checknoexec | |
34 rbc-names-v1 | 36 rbc-names-v1 |
35 rbc-revs-v1 | 37 rbc-revs-v1 |
36 | 38 |
37 Default operation: | 39 Default operation: |
38 | 40 |
43 | 45 |
44 Ensure branchcache got copied over: | 46 Ensure branchcache got copied over: |
45 | 47 |
46 $ ls .hg/cache | 48 $ ls .hg/cache |
47 branch2-served | 49 branch2-served |
50 checkisexec | |
48 | 51 |
49 $ cat a | 52 $ cat a |
50 a | 53 a |
51 $ hg verify | 54 $ hg verify |
52 checking changesets | 55 checking changesets |