Skip to content
Snippets Groups Projects
Commit 769f6686 authored by Adrian Buehlmann's avatar Adrian Buehlmann
Browse files

perf: simply use repo.store for perffncache* commands

This makes sure that .hg/requires is observed and the correct kind of store
object is created. Otherwise we might mutilate our test repos when experimenting
with new repo formats.
parent f38e2873
No related branches found
No related tags found
No related merge requests found
......@@ -180,10 +180,9 @@
timer(lambda: scmutil.casecollisionauditor(ui, False, repo.dirstate))
def perffncacheload(ui, repo):
from mercurial import scmutil, store
s = store.store(set(['store','fncache']), repo.path, scmutil.opener)
s = repo.store
def d():
s.fncache._load()
timer(d)
def perffncachewrite(ui, repo):
......@@ -185,10 +184,9 @@
def d():
s.fncache._load()
timer(d)
def perffncachewrite(ui, repo):
from mercurial import scmutil, store
s = store.store(set(['store','fncache']), repo.path, scmutil.opener)
s = repo.store
s.fncache._load()
def d():
s.fncache._dirty = True
......@@ -196,9 +194,7 @@
timer(d)
def perffncacheencode(ui, repo):
from mercurial import store
s = store.store(set(['store','fncache','dotencode']),
repo.path, scmutil.opener)
s = repo.store
s.fncache._load()
def d():
for p in s.fncache.entries:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment