Description: Ignore "[cups-deviced] PID * (usb) crashed on signal 11!" and "[cups-deviced] PID * (dnssd) stopped with status 1" errors in the log during the test suite. This seems to regularly happen on Debian/Ubuntu buildds. Author: Martin Pitt Author: Didier Raboud Last-Update: 2013-01-09 --- a/test/run-stp-tests.sh +++ b/test/run-stp-tests.sh @@ -897,7 +897,7 @@ fi # Error log messages -count=`$GREP '^E ' /tmp/cups-$user/log/error_log | wc -l | awk '{print $1}'` +count=`$GREP '^E ' /tmp/cups-$user/log/error_log | $GREP -v '(usb) crashed on signal 11' | $GREP -v '(dnssd) stopped with status 1' | wc -l | awk '{print $1}'` if test $count != 33; then echo "FAIL: $count error messages, expected 33." $GREP '^E ' /tmp/cups-$user/log/error_log