From: Ian Jackson Date: Sun, 16 Aug 2015 15:50:27 +0000 (+0100) Subject: Test suite: Fix t-restriction-x-dgit-schroot-build not to print to stdout when it... X-Git-Tag: debian/1.3~1 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=68183f87b584b5a4c273375b391d92b81234d96a Test suite: Fix t-restriction-x-dgit-schroot-build not to print to stdout when it succeeds --- diff --git a/tests/lib-restricts b/tests/lib-restricts index 64d56a4a..1eb166e4 100644 --- a/tests/lib-restricts +++ b/tests/lib-restricts @@ -13,5 +13,5 @@ t-restriction-x-dgit-git-only () { } t-restriction-x-dgit-schroot-build () { - schroot -l -c build 2>&1 || return 1 + schroot -l -c build 2>&1 >/dev/null || return 1 }