##// END OF EJS Templates
fuzz: try setting PYTHONNOUSERSITE=1 to avoid loading site-packages...
fuzz: try setting PYTHONNOUSERSITE=1 to avoid loading site-packages Right now the fuzzer is crashing trying to look up the home dir for uid 0, which is breaking in the fuzz environment. Differential Revision: https://phab.mercurial-scm.org/D4936

File last commit:

r34317:12b35596 default
r40181:adfe4bb5 default
Show More
mocktime.py
18 lines | 446 B | text/x-python | PythonLexer
from __future__ import absolute_import
import os
import time
class mocktime(object):
def __init__(self, increment):
self.time = 0
self.increment = [float(s) for s in increment.split()]
self.pos = 0
def __call__(self):
self.time += self.increment[self.pos % len(self.increment)]
self.pos += 1
return self.time
def uisetup(ui):
time.time = mocktime(os.environ.get('MOCKTIME', '0.1'))