[Python-apps-commits] r12887 - in packages/mercurial/trunk/debian (3 files)

vicho at users.alioth.debian.org vicho at users.alioth.debian.org
Sun Mar 6 14:25:57 UTC 2016


    Date: Sunday, March 6, 2016 @ 14:25:56
  Author: vicho
Revision: 12887

Avoid allow-stderr in mercurial-git autopkgtest

Modified:
  packages/mercurial/trunk/debian/changelog
  packages/mercurial/trunk/debian/tests/control
  packages/mercurial/trunk/debian/tests/mercurial-git	(contents, properties)

Modified: packages/mercurial/trunk/debian/changelog
===================================================================
--- packages/mercurial/trunk/debian/changelog	2016-03-06 13:22:38 UTC (rev 12886)
+++ packages/mercurial/trunk/debian/changelog	2016-03-06 14:25:56 UTC (rev 12887)
@@ -2,6 +2,7 @@
 
   * Fix "FTBFS when built with dpkg-buildpackage -A".  Thanks Julien
     Cristau for the patch (Closes: #807021)
+  * Avoid allow-stderr in mercurial-git autopkgtest
 
  -- Javi Merino <vicho at debian.org>  Sun, 06 Mar 2016 13:17:25 +0000
 

Modified: packages/mercurial/trunk/debian/tests/control
===================================================================
--- packages/mercurial/trunk/debian/tests/control	2016-03-06 13:22:38 UTC (rev 12886)
+++ packages/mercurial/trunk/debian/tests/control	2016-03-06 14:25:56 UTC (rev 12887)
@@ -8,4 +8,3 @@
 
 Tests: mercurial-git
 Depends: @, mercurial-git, git
-Restrictions: allow-stderr

Modified: packages/mercurial/trunk/debian/tests/mercurial-git
===================================================================
--- packages/mercurial/trunk/debian/tests/mercurial-git	2016-03-06 13:22:38 UTC (rev 12886)
+++ packages/mercurial/trunk/debian/tests/mercurial-git	2016-03-06 14:25:56 UTC (rev 12887)
@@ -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