mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 08:02:24 +03:00
ab3a7cb21f
Summary: In preparation for merging fb-mercurial sources to the Eden repository, move everything from the top-level directory into an `eden/scm` subdirectory.
36 lines
940 B
Python
36 lines
940 B
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
|
|
|
|
|
|
# Set up
|
|
sh % "cat" << r"""
|
|
[experimental]
|
|
evolution=all
|
|
[extensions]
|
|
amend=
|
|
tweakdefaults=
|
|
""" >> "$HGRCPATH"
|
|
|
|
# Test hg bookmark works with hidden commits
|
|
|
|
sh % "hg init repo1"
|
|
sh % "cd repo1"
|
|
sh % "touch a"
|
|
sh % "hg commit -A a -m a"
|
|
sh % "echo 1" >> "a"
|
|
sh % "hg commit a -m a1"
|
|
sh % "hg prune da7a5140a611 -q" == r"""
|
|
hint[strip-hide]: 'hg strip' may be deprecated in the future - use 'hg hide' instead
|
|
hint[hint-ack]: use 'hg hint --ack strip-hide' to silence these hints"""
|
|
sh % "hg bookmark b -r da7a5140a611 -q"
|
|
|
|
# Same test but with remotenames enabled
|
|
|
|
sh % "hg bookmark b2 -r da7a5140a611 -q --config 'extensions.remotenames='"
|