mirror of
https://github.com/facebook/sapling.git
synced 2024-12-28 23:54:12 +03:00
467f4aef45
Summary: Ran ./run-tests.py --json and used the following script: import json import subprocess with open("report.json", "r") as f: tests = json.load(f) for name, t in tests.items(): if t["result"] == "success": print("%s successful" % name) subprocess.run("sed -i '/#require py2/d' %s" % name, shell=True) subprocess.run("sed -i '/require.*py2/d' %s" % name, shell=True) Reviewed By: singhsrb Differential Revision: D19664298 fbshipit-source-id: fa67c7c7abd110c9f0df9345daf09f2792aacd44
44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2 or any later version.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from testutil.dott import feature, sh, testtmp # noqa: F401
|
|
|
|
|
|
# Test various flags to turn off bad hg features.
|
|
|
|
sh % "newrepo"
|
|
sh % "drawdag" << r"""
|
|
A
|
|
"""
|
|
sh % "hg up -Cq $A"
|
|
|
|
# Test disabling the `hg merge` command:
|
|
sh % "hg merge" == r"""
|
|
abort: nothing to merge
|
|
[255]"""
|
|
sh % "setconfig 'ui.allowmerge=False'"
|
|
sh % "hg merge" == r"""
|
|
abort: merging is not supported for this repository
|
|
(use rebase instead)
|
|
[255]"""
|
|
|
|
# Test disabling the `hg branch` commands:
|
|
sh % "hg branch" == r"""
|
|
default
|
|
hint[branch-command-deprecate]: 'hg branch' command does not do what you want, and is being removed. It always prints 'default' for now. Check fburl.com/why-no-named-branches for details.
|
|
hint[hint-ack]: use 'hg hint --ack branch-command-deprecate' to silence these hints"""
|
|
sh % "setconfig 'ui.allowbranches=False'"
|
|
sh % "hg branch foo" == r"""
|
|
abort: named branches are disabled in this repository
|
|
(use bookmarks instead)
|
|
[255]"""
|
|
sh % "setconfig 'ui.disallowedbrancheshint=use bookmarks instead! see docs'"
|
|
sh % "hg branch -C" == r"""
|
|
abort: named branches are disabled in this repository
|
|
(use bookmarks instead! see docs)
|
|
[255]"""
|