summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2015-08-16 16:50:27 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2015-08-16 16:50:27 +0100
commit68183f87b584b5a4c273375b391d92b81234d96a (patch)
tree863007834e11286cb7682522d1c9dd303d8c95b8
parentb1e6ef82d508ae7c02c8444d57a6de5cdbf08de9 (diff)
Test suite: Fix t-restriction-x-dgit-schroot-build not to print to stdout when it succeeds
-rw-r--r--tests/lib-restricts2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib-restricts b/tests/lib-restricts
index 64d56a4..1eb166e 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
}