tests/hghave.py
changeset 34401 13d3f8aaed87
parent 34399 200eadbcf0b0
child 34696 15b561fffde5
--- a/tests/hghave.py	Sun Oct 01 04:37:56 2017 -0700
+++ b/tests/hghave.py	Sun Oct 01 05:21:32 2017 -0700
@@ -587,6 +587,13 @@
                           br'to run debian/rules with given parameter')
     return dpkg and dh and dh_py2 and debuild
 
+@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'