# HG changeset patch # User Yuya Nishihara # Date 1541683504 -32400 # Node ID c49283e740daf359dc7fde6ff98246442dad1ab4 # Parent 83dd8c63a0c6c2bddee10b9d7f66cec5a0486567 test-commandserver: clean up quoting and location of dbgui extension This helps embedding '$' in the script. diff -r 83dd8c63a0c6 -r c49283e740da tests/test-commandserver.t --- a/tests/test-commandserver.t Sun Jan 18 17:55:28 2015 +0900 +++ b/tests/test-commandserver.t Thu Nov 08 22:25:04 2018 +0900 @@ -607,7 +607,7 @@ *** runcommand qqueue --active foo - $ cat < dbgui.py + $ cat <<'EOF' > ../dbgui.py > import os > import sys > from mercurial import commands, registrar @@ -615,10 +615,10 @@ > command = registrar.command(cmdtable) > @command(b"debuggetpass", norepo=True) > def debuggetpass(ui): - > ui.write(b"%s\\n" % ui.getpass()) + > ui.write(b"%s\n" % ui.getpass()) > @command(b"debugprompt", norepo=True) > def debugprompt(ui): - > ui.write(b"%s\\n" % ui.prompt(b"prompt:")) + > ui.write(b"%s\n" % ui.prompt(b"prompt:")) > @command(b"debugreadstdin", norepo=True) > def debugreadstdin(ui): > ui.write(b"read: %r\n" % sys.stdin.read(1)) @@ -630,7 +630,7 @@ > EOF $ cat <> .hg/hgrc > [extensions] - > dbgui = dbgui.py + > dbgui = ../dbgui.py > EOF >>> from hgclient import check, readchannel, runcommand, stringio