##// END OF EJS Templates
cmdserver: forcibly use L channel to read password input (issue3161)...
cmdserver: forcibly use L channel to read password input (issue3161) Command server is designed to use the channel protocol even if the server process is accessible to tty, whereas vanilla hg should be able to read password from tty in that case. So it isn't enough to swap sys.stdin: # works only if the server process is detached from the console sys.stdin = self.fin getpass.getpass('') sys.stdin = oldin or test isatty: # vanilla hg can't talk to tty if stdin is redirected if self._isatty(self.fin): return getpass.getpass('') else: ... Since ui.nontty flag is undocumented and command-server channels don't provide isatty(), this change won't affect the other uses of ui._isatty(). issue3161 also suggests to provide some context of messages. I think it can be implemented by using the generic templating function.

File last commit:

r16913:f2719b38 default
r21195:9336bc7d stable
Show More
test-diff-hashes.t
46 lines | 1013 B | text/troff | Tads3Lexer
/ tests / test-diff-hashes.t
Adrian Buehlmann
tests: unify test-diff-hashes
r12137 $ hg init a
$ cd a
$ hg diff inexistent1 inexistent2
Mads Kiilerich
tests: hide 'No such file or directory' messages...
r15521 inexistent1: * (glob)
inexistent2: * (glob)
Adrian Buehlmann
tests: unify test-diff-hashes
r12137
$ echo bar > foo
$ hg add foo
Martin Geisler
tests: remove unneeded -d flags...
r12156 $ hg ci -m 'add foo'
Adrian Buehlmann
tests: unify test-diff-hashes
r12137
$ echo foobar > foo
Martin Geisler
tests: remove unneeded -d flags...
r12156 $ hg ci -m 'change foo'
Adrian Buehlmann
tests: unify test-diff-hashes
r12137
$ hg --quiet diff -r 0 -r 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 --- a/foo Thu Jan 01 00:00:00 1970 +0000
+++ b/foo Thu Jan 01 00:00:00 1970 +0000
Adrian Buehlmann
tests: unify test-diff-hashes
r12137 @@ -1,1 +1,1 @@
-bar
+foobar
$ hg diff -r 0 -r 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 diff -r a99fb63adac3 -r 9b8568d3af2f foo
--- a/foo Thu Jan 01 00:00:00 1970 +0000
+++ b/foo Thu Jan 01 00:00:00 1970 +0000
Adrian Buehlmann
tests: unify test-diff-hashes
r12137 @@ -1,1 +1,1 @@
-bar
+foobar
$ hg --verbose diff -r 0 -r 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 diff -r a99fb63adac3 -r 9b8568d3af2f foo
--- a/foo Thu Jan 01 00:00:00 1970 +0000
+++ b/foo Thu Jan 01 00:00:00 1970 +0000
Adrian Buehlmann
tests: unify test-diff-hashes
r12137 @@ -1,1 +1,1 @@
-bar
+foobar
$ hg --debug diff -r 0 -r 1
Martin Geisler
tests: remove unneeded -d flags...
r12156 diff -r a99fb63adac3f31816a22f665bc3b7a7655b30f4 -r 9b8568d3af2f1749445eef03aede868a6f39f210 foo
--- a/foo Thu Jan 01 00:00:00 1970 +0000
+++ b/foo Thu Jan 01 00:00:00 1970 +0000
Adrian Buehlmann
tests: unify test-diff-hashes
r12137 @@ -1,1 +1,1 @@
-bar
+foobar
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913 $ cd ..