sapling/eden/scm/tests/test-alias2.t
Jun Wu 75a8173a10 tests: enable chg for 572 tests
Summary:
Add `#chg-compatible` to 572 tests that seem to pass with chg enabled.
This should make them run faster.

Reviewed By: xavierd

Differential Revision: D18870507

fbshipit-source-id: fe895e733efffc9286cd3d17c7a156c803124395
2019-12-09 15:26:29 -08:00

25 lines
484 B
Perl

#chg-compatible
Interesting corner cases.
command name matches global flag values
$ setconfig ui.allowemptycommit=1
$ hg init foo
$ hg -R foo commit -m "This is foo\n"
$ hg init log
$ hg -R log commit -m "This is log\n"
$ setconfig "alias.foo=log" "alias.log=log -T {desc} -r"
$ hg -R foo foo tip
This is foo\n (no-eol)
$ hg -R log foo tip
This is log\n (no-eol)
$ hg -R foo log tip
This is foo\n (no-eol)
$ hg -R log log tip
This is log\n (no-eol)