sapling/eden/scm/tests/test-fb-hgext-tweakdefaults-revsets.t
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

52 lines
1.4 KiB
Perl

#chg-compatible
$ enable tweakdefaults
Setup repo
$ hg init repo
$ cd repo
$ touch a
$ hg commit -Aqm a
$ mkdir dir
$ touch dir/b
$ hg commit -Aqm b
$ hg up -q 0
$ echo x >> a
$ hg commit -Aqm a2
Test that warning is shown whenever ':' is used with singlecolonwarn set
$ hg log -T '{rev} ' -r '0:2' --config tweakdefaults.singlecolonwarn=1
warning: use of ':' is deprecated
0 1 2 (no-eol)
$ hg log -T '{rev} ' -r '0:2'
0 1 2 (no-eol)
$ hg log -T '{rev} ' -r ':2' --config tweakdefaults.singlecolonwarn=1
warning: use of ':' is deprecated
0 1 2 (no-eol)
$ hg log -T '{rev} ' -r ':2'
0 1 2 (no-eol)
$ hg log -T '{rev} ' -r '0:' --config tweakdefaults.singlecolonwarn=1
warning: use of ':' is deprecated
0 1 2 (no-eol)
$ hg log -T '{rev} ' -r '0:'
0 1 2 (no-eol)
In this testcase warning should not be shown
$ hg log -T '{rev} ' -r ':' --config tweakdefaults.singlecolonwarn=1
0 1 2 (no-eol)
Check that the custom message can be used
$ hg log -T '{rev} ' -r '0:' --config tweakdefaults.singlecolonwarn=1 --config tweakdefaults.singlecolonmsg="hey stop that"
warning: hey stop that
0 1 2 (no-eol)
Check that we can abort as well
$ hg log -T '{rev} ' -r '0:' --config tweakdefaults.singlecolonabort=1
abort: use of ':' is deprecated
[255]
$ hg log -T '{rev} ' -r '0:' --config tweakdefaults.singlecolonabort=1 --config tweakdefaults.singlecolonmsg="no more colons"
abort: no more colons
[255]