contrib/perf.py
changeset 43122 436a6a31df38
parent 43121 ce315b1fc9a7
child 43123 69301b79fd36
--- a/contrib/perf.py	Tue Oct 08 01:46:57 2019 -0400
+++ b/contrib/perf.py	Tue Oct 08 01:57:10 2019 -0400
@@ -1112,11 +1112,13 @@
     timer, fm = gettimer(ui, opts)
     b"a" in repo.dirstate
 
+    def setup():
+        repo.dirstate.invalidate()
+
     def d():
-        repo.dirstate.invalidate()
         b"a" in repo.dirstate
 
-    timer(d)
+    timer(d, setup=setup)
     fm.end()