mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 08:02:24 +03:00
218c83d574
Summary: In a future diff we'll be removing tags. The most prevalent tag is 'tip', which shows up in a ton of test output. Let's drop that tag first, so we can safely update the tests before we drop tags entirely. Reviewed By: xavierd Differential Revision: D18995058 fbshipit-source-id: 8c63710cd4ed567ea24e32724b8660f9006a61f1
39 lines
1.0 KiB
Python
39 lines
1.0 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
|
|
|
|
|
|
# TODO: Make this test compatibile with obsstore enabled.
|
|
sh % "setconfig 'experimental.evolution='"
|
|
|
|
# Set up extensions (order is important here, we must test tweakdefaults loading last)
|
|
sh % "cat" << r"""
|
|
[extensions]
|
|
rebase=
|
|
remotenames=
|
|
tweakdefaults=
|
|
""" >> "$HGRCPATH"
|
|
|
|
# Run test
|
|
sh % "hg init repo"
|
|
sh % "cd repo"
|
|
sh % "touch a"
|
|
sh % "hg commit -Aqm a"
|
|
sh % "touch b"
|
|
sh % "hg commit -Aqm b"
|
|
sh % "hg bookmark AB"
|
|
sh % "hg up '.^'" == r"""
|
|
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
|
|
(leaving bookmark AB)"""
|
|
sh % "touch c"
|
|
sh % "hg commit -Aqm c"
|
|
sh % "hg bookmark C -t AB"
|
|
sh % "hg rebase" == r"""
|
|
rebasing d5e255ef74f8 "c" (C)
|
|
saved backup bundle to $TESTTMP/repo/.hg/strip-backup/d5e255ef74f8-7d2cc323-rebase.hg"""
|