sapling/eden/scm/tests/test-remotenames-namespaces-t.py
Xavier Deguillard e0e01cbc81 bundle2: backout D19656773
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
2020-01-31 10:48:19 -08:00

44 lines
1.3 KiB
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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
sh % "setconfig 'extensions.treemanifest=!'"
# Set up extension and repos
sh % "echo '[extensions]'" >> "$HGRCPATH"
sh % "echo 'remotenames='" >> "$HGRCPATH"
sh % "echo 'color='" >> "$HGRCPATH"
sh % "echo '[color]'" >> "$HGRCPATH"
sh % "echo 'log.remotebookmark = yellow'" >> "$HGRCPATH"
sh % "echo 'log.remotebranch = red'" >> "$HGRCPATH"
sh % "echo 'log.hoistedname = blue'" >> "$HGRCPATH"
sh % "hg init repo1"
sh % "cd repo1"
sh % "echo a" > "a"
sh % "hg add a"
sh % "hg commit -qm a"
sh % "hg boo bm2"
sh % "cd .."
sh % "hg clone repo1 repo2" == r"""
updating to branch default
1 files updated, 0 files merged, 0 files removed, 0 files unresolved"""
sh % "cd repo2"
sh % "hg bookmark local"
# Test colors
sh % "hg log '--color=always' -l 1" == r"""
changeset: 0:cb9a9f314b8b
bookmark: local
bookmark: default/bm2
hoistedname: bm2
user: test
date: Thu Jan 01 00:00:00 1970 +0000
summary: a"""