git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples
@ 2008-05-07  4:29 Christian Couder
  2008-05-07  4:59 ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: Christian Couder @ 2008-05-07  4:29 UTC (permalink / raw)
  To: Junio Hamano, Pieter de Bie, Jakub Narebski, Manoj Srivastava,
	Thomas Adam, Jeff
  Cc: git

Before this patch, there were no proper "git bisect run" example.
---
 Documentation/git-bisect.txt |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/Documentation/git-bisect.txt b/Documentation/git-bisect.txt
index 698ffde..a05963a 100644
--- a/Documentation/git-bisect.txt
+++ b/Documentation/git-bisect.txt
@@ -224,6 +224,32 @@ tree to the pristine state.  Finally the "run" script can exit with
 the status of the real test to let "git bisect run" command loop to
 know the outcome.
 
+EXAMPLES
+--------
+
+* Automatically bisect a broken build between v1.2 and HEAD:
++
+------------
+$ git bisect start HEAD v1.2 --      # HEAD is bad, v1.2 is good
+$ git bisect run make                # "make" builds the app
+------------
+
+* Automatically bisect a broken test case using a custom script:
++
+------------
+echo "#"\!"/bin/sh" > ~/test.sh
+echo "make install || exit 125" >> ~/test.sh
+echo "~/check_test_case.sh" >> ~/test.sh
+chmod u+x ~/test.sh
+$ git bisect start v1.3 v1.1 --      # v1.3 is bad, v1.1 is good
+$ git bisect run ~/test.sh
+------------
++
+Here we first create the "test.sh" custom script. In this script, if
+"make install" fails, we "skip" the current commit.
+And "check_test_case.sh" should "exit 0", if the test case passes, and
+"exit 1" (for example) otherwise.
+
 Author
 ------
 Written by Linus Torvalds <torvalds@osdl.org>
-- 
1.5.5.1.126.g9ca01

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

* Re: [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples
  2008-05-07  4:29 [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples Christian Couder
@ 2008-05-07  4:59 ` Junio C Hamano
  2008-05-07  6:29   ` Matthieu Moy
  0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2008-05-07  4:59 UTC (permalink / raw)
  To: Christian Couder
  Cc: Pieter de Bie, Jakub Narebski, Manoj Srivastava, Thomas Adam, git

Christian Couder <chriscool@tuxfamily.org> writes:

> Before this patch, there were no proper "git bisect run" example.

As if there were improper examples, and as if this patch adds a proper
one.  Drop "proper" and add sign-off perhaps?  ;-)

> ---
>  Documentation/git-bisect.txt |   26 ++++++++++++++++++++++++++
>  1 files changed, 26 insertions(+), 0 deletions(-)
>
> diff --git a/Documentation/git-bisect.txt b/Documentation/git-bisect.txt
> index 698ffde..a05963a 100644
> --- a/Documentation/git-bisect.txt
> +++ b/Documentation/git-bisect.txt
> @@ -224,6 +224,32 @@ tree to the pristine state.  Finally the "run" script can exit with
>  the status of the real test to let "git bisect run" command loop to
>  know the outcome.
>  
> +EXAMPLES
> +--------
> ...
> +* Automatically bisect a broken test case using a custom script:
> ++
> +------------
> +echo "#"\!"/bin/sh" > ~/test.sh
> +echo "make install || exit 125" >> ~/test.sh
> +echo "~/check_test_case.sh" >> ~/test.sh
> +chmod u+x ~/test.sh

s/install//; let's not set a bad example of installing first and then
testing.

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

* Re: [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples
  2008-05-07  4:59 ` Junio C Hamano
@ 2008-05-07  6:29   ` Matthieu Moy
  2008-05-07  7:25     ` Miklos Vajna
  2008-05-07 16:09     ` Jon Loeliger
  0 siblings, 2 replies; 6+ messages in thread
From: Matthieu Moy @ 2008-05-07  6:29 UTC (permalink / raw)
  To: Junio C Hamano
  Cc: Christian Couder, Pieter de Bie, Jakub Narebski, Manoj Srivastava,
	Thomas Adam, git

Junio C Hamano <gitster@pobox.com> writes:

>> +------------
>> +echo "#"\!"/bin/sh" > ~/test.sh
>> +echo "make install || exit 125" >> ~/test.sh
>> +echo "~/check_test_case.sh" >> ~/test.sh
>> +chmod u+x ~/test.sh
>
> s/install//; let's not set a bad example of installing first and then
> testing.

Perhaps also s/~/./g, since it's not a good idea to put temporary
files in $HOME IMHO.

Also, using simple quotes instead of double would simplify the
"#"\!"/bin/sh".

-- 
Matthieu

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

* Re: [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples
  2008-05-07  6:29   ` Matthieu Moy
@ 2008-05-07  7:25     ` Miklos Vajna
  2008-05-07 22:18       ` Christian Couder
  2008-05-07 16:09     ` Jon Loeliger
  1 sibling, 1 reply; 6+ messages in thread
From: Miklos Vajna @ 2008-05-07  7:25 UTC (permalink / raw)
  To: Matthieu Moy
  Cc: Junio C Hamano, Christian Couder, Pieter de Bie, Jakub Narebski,
	Manoj Srivastava, Thomas Adam, git

[-- Attachment #1: Type: text/plain, Size: 330 bytes --]

On Wed, May 07, 2008 at 08:29:03AM +0200, Matthieu Moy <Matthieu.Moy@imag.fr> wrote:
> Perhaps also s/~/./g, since it's not a good idea to put temporary
> files in $HOME IMHO.

the point is to have it outside the repo. at least i regularly have 'git
clean -f -x -d' in such a script if i don't trust the upstream build
system. ;)

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

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

* Re: [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples
  2008-05-07  6:29   ` Matthieu Moy
  2008-05-07  7:25     ` Miklos Vajna
@ 2008-05-07 16:09     ` Jon Loeliger
  1 sibling, 0 replies; 6+ messages in thread
From: Jon Loeliger @ 2008-05-07 16:09 UTC (permalink / raw)
  To: Matthieu Moy
  Cc: Junio C Hamano, Christian Couder, Pieter de Bie, Jakub Narebski,
	Manoj Srivastava, Thomas Adam, Git List

On Wed, 2008-05-07 at 08:29 +0200, Matthieu Moy wrote:
> Junio C Hamano <gitster@pobox.com> writes:
> 
> >> +------------
> >> +echo "#"\!"/bin/sh" > ~/test.sh
> >> +echo "make install || exit 125" >> ~/test.sh
> >> +echo "~/check_test_case.sh" >> ~/test.sh
> >> +chmod u+x ~/test.sh
> >
> > s/install//; let's not set a bad example of installing first and then
> > testing.
> 
> Perhaps also s/~/./g, since it's not a good idea to put temporary
> files in $HOME IMHO.
> 
> Also, using simple quotes instead of double would simplify the
> "#"\!"/bin/sh".

Hmm.  I would have just done "$ cat ~/test.sh" and
then shown the file listing directly.

jdl

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

* Re: [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples
  2008-05-07  7:25     ` Miklos Vajna
@ 2008-05-07 22:18       ` Christian Couder
  0 siblings, 0 replies; 6+ messages in thread
From: Christian Couder @ 2008-05-07 22:18 UTC (permalink / raw)
  To: Miklos Vajna
  Cc: Matthieu Moy, Junio C Hamano, Pieter de Bie, Jakub Narebski,
	Manoj Srivastava, Thomas Adam, git

Le mercredi 7 mai 2008, Miklos Vajna a écrit :
> On Wed, May 07, 2008 at 08:29:03AM +0200, Matthieu Moy 
<Matthieu.Moy@imag.fr> wrote:
> > Perhaps also s/~/./g, since it's not a good idea to put temporary
> > files in $HOME IMHO.
>
> the point is to have it outside the repo. 

Yes. Especially, if the test case is a new one, the scripts that are used 
must not have been checked in. Otherwise when bisect will checkout older 
versions, the scripts will be removed.

> at least i regularly have 'git 
> clean -f -x -d' in such a script if i don't trust the upstream build
> system. ;)

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

end of thread, other threads:[~2008-05-07 22:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-07  4:29 [PATCH 2/2] Documentation: bisect: add a few "git bisect run" examples Christian Couder
2008-05-07  4:59 ` Junio C Hamano
2008-05-07  6:29   ` Matthieu Moy
2008-05-07  7:25     ` Miklos Vajna
2008-05-07 22:18       ` Christian Couder
2008-05-07 16:09     ` Jon Loeliger

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).