git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] remote-helpers: remove --graph in hg_log()
@ 2013-04-06 16:00 Antoine Pelisse
  2013-04-06 16:06 ` Felipe Contreras
  0 siblings, 1 reply; 6+ messages in thread
From: Antoine Pelisse @ 2013-04-06 16:00 UTC (permalink / raw)
  To: Felipe Contreras; +Cc: Antoine Pelisse, git

The hg_log() test helper uses the "--graph" parameter that is
implemented by the GraphLog extension. If the extension is not activated
by the user, the parameter is not available. Do not use the option that
is unnecessary.

Also changes the way we grep the output in hg_log(). The pipe operator
can hide the return code of hg command. As a matter of fact, if log
fails because it doesn't know about "--graph", it doesn't report any
failure and let's you think everything worked.

Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
---
Hey Felipe,
I'm not so confident that --graph is useless to the test. If it's really
necessary, it would be nice either to activate it in setup() or to use
it just for the command through: "--config extensions.graphlog=".

Cheers,

 contrib/remote-helpers/test-hg-bidi.sh |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/contrib/remote-helpers/test-hg-bidi.sh b/contrib/remote-helpers/test-hg-bidi.sh
index 1d61982..96cd5a7 100755
--- a/contrib/remote-helpers/test-hg-bidi.sh
+++ b/contrib/remote-helpers/test-hg-bidi.sh
@@ -50,7 +50,8 @@ hg_push () {
 }

 hg_log () {
-	hg -R $1 log --graph --debug | grep -v 'tag: *default/'
+	hg -R $1 log --debug >log &&
+	grep -v 'tag: *default/' log
 }

 setup () {
--
1.7.9.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-04-07  1:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-06 16:00 [PATCH] remote-helpers: remove --graph in hg_log() Antoine Pelisse
2013-04-06 16:06 ` Felipe Contreras
2013-04-06 16:12   ` Antoine Pelisse
2013-04-06 16:32     ` Felipe Contreras
2013-04-06 16:50       ` [PATCH] remote-hg: activate graplog extension for hg_log() Antoine Pelisse
2013-04-07  1:25         ` Eric Sunshine

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).