D879: tests: add "have" check for dpkg builddeps

spectral (Kyle Lippincott) phabricator at mercurial-scm.org
Sun Oct 1 09:33:45 EDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG13d3f8aaed87: tests: add "have" check for dpkg builddeps (authored by spectral, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D879?vs=2265&id=2283

REVISION DETAIL
  https://phab.mercurial-scm.org/D879

AFFECTED FILES
  tests/hghave.py
  tests/test-debian-packages.t

CHANGE DETAILS

diff --git a/tests/test-debian-packages.t b/tests/test-debian-packages.t
--- a/tests/test-debian-packages.t
+++ b/tests/test-debian-packages.t
@@ -1,4 +1,4 @@
-#require test-repo slow debhelper
+#require test-repo slow debhelper debdeps
 
   $ . "$TESTDIR/helpers-testrepo.sh"
   $ testrepohgenv
diff --git a/tests/hghave.py b/tests/hghave.py
--- a/tests/hghave.py
+++ b/tests/hghave.py
@@ -587,6 +587,13 @@
                           br'to run debian/rules with given parameter')
     return dpkg and dh and dh_py2 and debuild
 
+ at check("debdeps",
+       "debian build dependencies (run dpkg-checkbuilddeps in contrib/)")
+def has_debdeps():
+    # just check exit status (ignoring output)
+    path = '%s/../contrib/debian/control' % os.environ['TESTDIR']
+    return matchoutput('dpkg-checkbuilddeps %s' % path, br'')
+
 @check("demandimport", "demandimport enabled")
 def has_demandimport():
     return os.environ.get('HGDEMANDIMPORT') != 'disable'



To: spectral, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list