Submitter | phabricator |
---|---|
Date | Oct. 18, 2017, 12:46 p.m. |
Message ID | <fd7c5c0bd802e7b404dd5cc9649cbf4a@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/25158/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -601,7 +601,8 @@ @check("demandimport", "demandimport enabled") def has_demandimport(): - return os.environ.get('HGDEMANDIMPORT') != 'disable' + # chg disables demandimport intentionally for performance wins. + return ((not has_chg()) and os.environ.get('HGDEMANDIMPORT') != 'disable') @check("py3k", "running with Python 3.x") def has_py3k():