]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - test/5.6-lpr.sh
Update software for stable draft of IPP Everywhere Printer Self-Certification
[thirdparty/cups.git] / test / 5.6-lpr.sh
index 5d0663af3d10869d39cf3a265a90161fd4492b54..7298792f65122f07144ac1ac27047fe253c11a25 100644 (file)
@@ -4,7 +4,7 @@
 #
 #   Test the lpr command.
 #
-#   Copyright 2007-2012 by Apple Inc.
+#   Copyright 2007-2014 by Apple Inc.
 #   Copyright 1997-2005 by Easy Software Products, all rights reserved.
 #
 #   These coded instructions, statements, and computer programs are the
@@ -55,6 +55,7 @@ echo ""
 echo "    lpr -P Test1 testfile.jpg"
 echo "    lpr -P Test2 testfile.jpg"
 i=0
+pids=""
 while test $i -lt $1; do
        j=1
        while test $j -le $2; do
@@ -63,12 +64,13 @@ while test $i -lt $1; do
        done
 
        $VALGRIND ../berkeley/lpr -P Test1 testfile.jpg 2>&1 &
+       pids="$pids $!"
        $VALGRIND ../berkeley/lpr -P Test2 testfile.jpg 2>&1 &
-       lprpid=$!
+       pids="$pids $!"
 
        i=`expr $i + 1`
 done
-wait $lppid
+wait $pids
 if test $? != 0; then
        echo "    FAILED"
        exit 1