summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2016-08-09 18:36:02 +0200
committerDidier Raboud <odyx@debian.org>2019-09-02 13:12:16 +0200
commit8dc36a92525b8359053a9a2247f327c2a7cf0e3b (patch)
treed0ff54beb539fe14e828dfab6ed94d3a6dc825c1
parent0499b9a06c41b1a5502b1a0a529340b85c1b4621 (diff)
Tests: ignore the failure to write uncompressed data
Ignore the 'Unable to write uncompressed print data: Broken pipe' error that sometimes breaks the errorlines counting on kfreebsd for some reason. Origin: vendor Last-Update: 2016-08-09 Patch-Name: tests-ignore-kfreebsd-unable-to-write-uncompressed-print-data.patch Gbp-Pq: Name tests-ignore-kfreebsd-unable-to-write-uncompressed-print-data.patch
-rwxr-xr-xtest/run-stp-tests.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/run-stp-tests.sh b/test/run-stp-tests.sh
index f3a432155..c072ad88d 100755
--- a/test/run-stp-tests.sh
+++ b/test/run-stp-tests.sh
@@ -1031,6 +1031,7 @@ count=`$GREP '^E ' $BASE/log/error_log | $GREP -v 'Unknown default SystemGroup'
$GREP -v 'loadFile failed: temp file: not a PDF file' | \
$GREP -v 'Failed to connect to system bus' | \
$GREP -v -E 'Unable to open listen socket for address .* Address family not supported by protocol.' | \
+ $GREP -v 'Unable to write uncompressed print data: Broken pipe' | \
wc -l | awk '{print $1}'`
if test $count != 33; then
echo "FAIL: $count error messages, expected 33."