[Python-apps-commits] r12892 - in packages/hg-git/trunk/debian (2 files)
vicho at users.alioth.debian.org
vicho at users.alioth.debian.org
Sun Mar 6 14:33:16 UTC 2016
Date: Sunday, March 6, 2016 @ 14:33:16
Author: vicho
Revision: 12892
Fix mercurial-git autopkg test by redirecting stderr to stdout for git clone and git push
Modified:
packages/hg-git/trunk/debian/changelog
packages/hg-git/trunk/debian/tests/mercurial-git
Modified: packages/hg-git/trunk/debian/changelog
===================================================================
--- packages/hg-git/trunk/debian/changelog 2016-03-06 14:33:13 UTC (rev 12891)
+++ packages/hg-git/trunk/debian/changelog 2016-03-06 14:33:16 UTC (rev 12892)
@@ -8,6 +8,8 @@
* Use https for Vcs-Browser
* Update hg-git's homepage
* Bump standards-version to 3.9.7 (no change needed)
+ * Fix mercurial-git autopkg test by redirecting stderr to stdout for
+ git clone and git push
-- Javi Merino <vicho at debian.org> Sun, 06 Mar 2016 13:34:25 +0000
Modified: packages/hg-git/trunk/debian/tests/mercurial-git
===================================================================
--- packages/hg-git/trunk/debian/tests/mercurial-git 2016-03-06 14:33:13 UTC (rev 12891)
+++ packages/hg-git/trunk/debian/tests/mercurial-git 2016-03-06 14:33:16 UTC (rev 12892)
@@ -6,14 +6,14 @@
# Setup a git repository with some content
git init --bare git_server
-git clone git_server git_clone
+git clone git_server git_clone 2>&1
cd git_clone
git config user.name Babar
git config user.email babar at jungle.org
echo a >a
git add a
git commit -m a
-git push origin master
+git push origin master 2>&1
cd ..
# Now try to clone it with mercurial-git
More information about the Python-apps-commits
mailing list