diff --git a/benchmarks/utils.py b/benchmarks/utils.py index bc2e9db301a8bf5cade69989e7fd2cc527e26ba2_YmVuY2htYXJrcy91dGlscy5weQ==..61d17b63e5d5fbabdf76e3ec271f0f9310f0b478_YmVuY2htYXJrcy91dGlscy5weQ== 100644 --- a/benchmarks/utils.py +++ b/benchmarks/utils.py @@ -324,6 +324,29 @@ # define the cache dir for simplicity self._cache_dir = os.getcwd() + # Don't run if using Rust on a revision before the Rust modulepolicy + # was introduced + if os.environ.get("HGMODULEPOLICY").startswith("rust"): + # Don't use `subprocess.PIPE` as it can deadlock (see docs). + # We capture `stderr` because the error message from `hg log` would + # make it seem like there was a bug. + with open(os.devnull, "w") as FNULL: + try: + self.hg( + "log", + "-r", + "94167e701e125dce1788e19b1e1489958235e40c", + stderr=FNULL, + ) + except subprocess.CalledProcessError as e: + if e.returncode == 255: + raise NotImplementedError( + "Rust modulepolicy was not implemented before " + "revision 94167e701e125dce1788e19b1e1489958235e40c" + ", skipping." + ) + raise + def should_skip_benchmark(self, incompatibility_revset, current_version, filter_fn, test_kwargs): """Determines whether the benchmark should be run given an exclusion revset, the current mercurial version and an optional filter function.