Mercurial > public > mercurial-scm > hg-stable
diff tests/run-tests.py @ 47323:7ea39d633cf3
docket: move the uid logic in the `revlogutils.docket` module
We want to use it for revlog-v2 (& Co), it seems more logical to have the logic
lives inside the `docket` file than the `nodemap` file.
Differential Revision: https://phab.mercurial-scm.org/D10755
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 19 May 2021 19:57:55 +0200 |
parents | 9a3aa54774ff |
children | 81d70de39c7e |
line wrap: on
line diff
--- a/tests/run-tests.py Wed May 19 17:12:06 2021 +0200 +++ b/tests/run-tests.py Wed May 19 19:57:55 2021 +0200 @@ -1386,8 +1386,8 @@ env['PYTHONUSERBASE'] = sysconfig.get_config_var('userbase') or '' env['HGEMITWARNINGS'] = '1' env['TESTTMP'] = _bytes2sys(self._testtmp) - docket_id_file = os.path.join(_bytes2sys(self._testtmp), 'DOCKETID') - env['HGTEST_DOCKETIDFILE'] = docket_id_file + uid_file = os.path.join(_bytes2sys(self._testtmp), 'UID') + env['HGTEST_UUIDFILE'] = uid_file env['TESTNAME'] = self.name env['HOME'] = _bytes2sys(self._testtmp) if os.name == 'nt':