# HG changeset patch
# User David M. Carr <david@carrclan.us>
# Date 1351484275 14400
#      Mon Oct 29 00:17:55 2012 -0400
# Node ID 81832807d193c244022409571ba70ec36bbe6667
# Parent  8c6dc6a6f5d846a7ddef6942b96c8c11a57ba294
tests: uncomment calls to hghave git

Now that hghave git works properly, uncomment the calls, and add ones that were
missing.

diff --git a/tests/test-bookmark-workflow.t b/tests/test-bookmark-workflow.t
--- a/tests/test-bookmark-workflow.t
+++ b/tests/test-bookmark-workflow.t
@@ -9,8 +9,8 @@
 of bookmarks should be considered "under test", and mutation of bookmarks
 locally is only to provide a test fixture.
 
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 Bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-clone.t b/tests/test-clone.t
--- a/tests/test-clone.t
+++ b/tests/test-clone.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-conflict-1.t b/tests/test-conflict-1.t
--- a/tests/test-conflict-1.t
+++ b/tests/test-conflict-1.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-conflict-2.t b/tests/test-conflict-2.t
--- a/tests/test-conflict-2.t
+++ b/tests/test-conflict-2.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-convergedmerge.t b/tests/test-convergedmerge.t
--- a/tests/test-convergedmerge.t
+++ b/tests/test-convergedmerge.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-empty-working-tree.t b/tests/test-empty-working-tree.t
--- a/tests/test-empty-working-tree.t
+++ b/tests/test-empty-working-tree.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-encoding.t b/tests/test-encoding.t
--- a/tests/test-encoding.t
+++ b/tests/test-encoding.t
@@ -1,7 +1,7 @@
 # -*- coding: utf-8 -*-
 
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-file-removal.t b/tests/test-file-removal.t
--- a/tests/test-file-removal.t
+++ b/tests/test-file-removal.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-git-clone.t b/tests/test-git-clone.t
--- a/tests/test-git-clone.t
+++ b/tests/test-git-clone.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-git-submodules.t b/tests/test-git-submodules.t
--- a/tests/test-git-submodules.t
+++ b/tests/test-git-submodules.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-git-tags.t b/tests/test-git-tags.t
--- a/tests/test-git-tags.t
+++ b/tests/test-git-tags.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-git-workflow.t b/tests/test-git-workflow.t
--- a/tests/test-git-workflow.t
+++ b/tests/test-git-workflow.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-hg-author.t b/tests/test-hg-author.t
--- a/tests/test-hg-author.t
+++ b/tests/test-hg-author.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-hg-branch.t b/tests/test-hg-branch.t
--- a/tests/test-hg-branch.t
+++ b/tests/test-hg-branch.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-hg-tags.t b/tests/test-hg-tags.t
--- a/tests/test-hg-tags.t
+++ b/tests/test-hg-tags.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-incoming.t b/tests/test-incoming.t
--- a/tests/test-incoming.t
+++ b/tests/test-incoming.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-keywords.t b/tests/test-keywords.t
--- a/tests/test-keywords.t
+++ b/tests/test-keywords.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-merge.t b/tests/test-merge.t
--- a/tests/test-merge.t
+++ b/tests/test-merge.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-octopus.t b/tests/test-octopus.t
--- a/tests/test-octopus.t
+++ b/tests/test-octopus.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-outgoing.t b/tests/test-outgoing.t
--- a/tests/test-outgoing.t
+++ b/tests/test-outgoing.t
@@ -1,3 +1,6 @@
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
+
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
 
diff --git a/tests/test-pull-after-strip.t b/tests/test-pull-after-strip.t
--- a/tests/test-pull-after-strip.t
+++ b/tests/test-pull-after-strip.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 this test is busted on hg < 1.5. I'm not sure how to fix it.
   $ cat > tmp.py <<EOF
diff --git a/tests/test-pull.t b/tests/test-pull.t
--- a/tests/test-pull.t
+++ b/tests/test-pull.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-push.t b/tests/test-push.t
--- a/tests/test-push.t
+++ b/tests/test-push.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-subrepos.t b/tests/test-subrepos.t
--- a/tests/test-subrepos.t
+++ b/tests/test-subrepos.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
 python -c 'import dulwich, dulwich.repo' || exit 80
diff --git a/tests/test-tree-decomposition.t b/tests/test-tree-decomposition.t
--- a/tests/test-tree-decomposition.t
+++ b/tests/test-tree-decomposition.t
@@ -1,5 +1,5 @@
-# Fails for some reason, need to investigate
-#   $ "$TESTDIR/hghave" git || exit 80
+bail if the user does not have git command-line client
+  $ "$TESTDIR/hghave" git || exit 80
 
 bail if the user does not have dulwich
   $ python -c 'import dulwich, dulwich.repo' || exit 80