sapling/eden/scm/tests/test-mkdir-broken-symlink-t.py
Xavier Deguillard 182e362070 tests: enable some test on Python3
Summary: These are newly passing, let's enable them.

Reviewed By: quark-zju

Differential Revision: D19668516

fbshipit-source-id: d979631203e14ce6e2ec0ab0c45773ee4846ba71
2020-01-31 13:27:46 -08:00

18 lines
542 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
feature.require(["symlink"])
sh % "mkdir -p a"
sh % "ln -s a/b a/c"
sh % "hg debugshell -c 'm.util.makedirs(\"a/c/e/f\")'" == r"""
abort: Symlink '$TESTTMP/a/c' points to non-existed destination 'a/b' during makedir: $TESTTMP/a/c/e
[255]"""