From: Michael R Sweet Date: Fri, 27 Nov 2020 15:17:17 +0000 (-0500) Subject: Add debugging output to test suite for Travis CI issue. X-Git-Tag: v2.3.3op2~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4283bec1ffc73bab0f93f570307942551950bef;p=thirdparty%2Fcups.git Add debugging output to test suite for Travis CI issue. --- diff --git a/test/run-stp-tests.sh b/test/run-stp-tests.sh index 1af6d07417..d93388408a 100755 --- a/test/run-stp-tests.sh +++ b/test/run-stp-tests.sh @@ -3,6 +3,7 @@ # Perform the complete set of IPP compliance tests specified in the # CUPS Software Test Plan. # +# Copyright © 2020 by Michael R Sweet # Copyright © 2007-2019 by Apple Inc. # Copyright © 1997-2007 by Easy Software Products, all rights reserved. # @@ -851,7 +852,8 @@ else echo " ls -l $BASE/spool" >>$strfile count=`ls -1 $BASE/spool | wc -l` if test $count = 1; then - echo "FAIL" + echo "FAIL (job control files not present)" + ls -l $BASE/spool echo " FAILED (job control files not present)" >>$strfile ls -l $BASE/spool >>$strfile fail=`expr $fail + 1` @@ -870,7 +872,8 @@ else echo " ls -l $BASE/spool" >>$strfile count=`ls -1 $BASE/spool | wc -l` if test $count != 1; then - echo "FAIL" + echo "FAIL (job control files still present)" + ls -l $BASE/spool echo " FAILED (job control files still present)" >>$strfile ls -l $BASE/spool >>$strfile fail=`expr $fail + 1`