mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
e0e01cbc81
Summary: This broke a bunch of tests. Revert it and re-enable all the tests. Reviewed By: DurhamG Differential Revision: D19665042 fbshipit-source-id: c3c17e3ac7e2ea028be5b5836bc8349cdf56184e
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='"
|