# HG changeset patch # User Augie Fackler # Date 1441075413 14400 # Node ID ca9bb66c80e9b4075fdfbc33f1475b62ef033ebc # Parent 4bc3707f3e67fe7d04a69c287668042e36cadefb hghave: correct test for debhelper debhelper exits with a nonzero status when you pass --help, at least on jessie. diff -r 4bc3707f3e67 -r ca9bb66c80e9 tests/hghave.py --- a/tests/hghave.py Tue Sep 01 15:47:33 2015 -0400 +++ b/tests/hghave.py Mon Aug 31 22:43:33 2015 -0400 @@ -441,7 +441,7 @@ dpkg = matchoutput('dpkg --version', "Debian `dpkg' package management program") dh = matchoutput('dh --help', - 'dh is a part of debhelper.') + 'dh is a part of debhelper.', ignorestatus=True) dh_py2 = matchoutput('dh_python2 --help', 'other supported Python versions') return dpkg and dh and dh_py2