__init__.py
38 lines
| 1021 B
| text/x-python
|
PythonLexer
r47746 | import os | |||
import time | ||||
# work around check-code complains | ||||
# | ||||
# This is a simple log level module doing simple test related work, we can't | ||||
# import more things, and we do not need it. | ||||
environ = getattr(os, 'environ') | ||||
def _timeout_factor(): | ||||
"""return the current modification to timeout""" | ||||
r48287 | default = int(environ.get('HGTEST_TIMEOUT_DEFAULT', 360)) | |||
r47746 | current = int(environ.get('HGTEST_TIMEOUT', default)) | |||
r48287 | if current == 0: | |||
return 1 | ||||
r47746 | return current / float(default) | |||
def wait_file(path, timeout=10): | ||||
timeout *= _timeout_factor() | ||||
start = time.time() | ||||
while not os.path.exists(path): | ||||
Cédric Krier
|
r48457 | if timeout and time.time() - start > timeout: | ||
r47746 | raise RuntimeError(b"timed out waiting for file: %s" % path) | |||
time.sleep(0.01) | ||||
r47747 | ||||
def write_file(path, content=b''): | ||||
r48604 | if content: | |||
write_path = b'%s.tmp' % path | ||||
else: | ||||
write_path = path | ||||
with open(write_path, 'wb') as f: | ||||
r47747 | f.write(content) | |||
r48604 | if path != write_path: | |||
os.rename(write_path, path) | ||||