summaryrefslogtreecommitdiff
path: root/test/5.5-lp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/5.5-lp.sh')
-rw-r--r--test/5.5-lp.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/5.5-lp.sh b/test/5.5-lp.sh
index ba7c5f91b..03adc5ffd 100644
--- a/test/5.5-lp.sh
+++ b/test/5.5-lp.sh
@@ -2,7 +2,7 @@
#
# Test the lp command.
#
-# Copyright © 2007-2014 by Apple Inc.
+# Copyright © 2007-2019 by Apple Inc.
# Copyright © 1997-2005 by Easy Software Products, all rights reserved.
#
# Licensed under Apache License v2.0. See the file "LICENSE" for more
@@ -12,7 +12,7 @@
echo "LP Default Test"
echo ""
echo " lp testfile.pdf"
-$runcups $VALGRIND ../systemv/lp testfile.pdf 2>&1
+$runcups $VALGRIND ../systemv/lp ../examples/testfile.pdf 2>&1
if test $? != 0; then
echo " FAILED"
exit 1
@@ -24,7 +24,7 @@ echo ""
echo "LP Destination Test"
echo ""
echo " lp -d Test3 -o fit-to-page testfile.jpg"
-$runcups $VALGRIND ../systemv/lp -d Test3 -o fit-to-page testfile.jpg 2>&1
+$runcups $VALGRIND ../systemv/lp -d Test3 -o fit-to-page ../examples/testfile.jpg 2>&1
if test $? != 0; then
echo " FAILED"
exit 1
@@ -36,7 +36,7 @@ echo ""
echo "LP Options Test"
echo ""
echo " lp -d Test1 -P 1-4 -o job-sheets=classified,classified testfile.pdf"
-$runcups $VALGRIND ../systemv/lp -d Test1 -P 1-4 -o job-sheets=classified,classified testfile.pdf 2>&1
+$runcups $VALGRIND ../systemv/lp -d Test1 -P 1-4 -o job-sheets=classified,classified ../examples/testfile.pdf 2>&1
if test $? != 0; then
echo " FAILED"
exit 1
@@ -54,13 +54,13 @@ pids=""
while test $i -lt $1; do
j=1
while test $j -le $2; do
- $runcups $VALGRIND ../systemv/lp -d test-$j testfile.jpg 2>&1
+ $runcups $VALGRIND ../systemv/lp -d test-$j ../examples/testfile.jpg 2>&1
j=`expr $j + 1`
done
- $runcups $VALGRIND ../systemv/lp -d Test1 testfile.jpg 2>&1 &
+ $runcups $VALGRIND ../systemv/lp -d Test1 ../examples/testfile.jpg 2>&1 &
pids="$pids $!"
- $runcups $VALGRIND ../systemv/lp -d Test2 testfile.jpg 2>&1 &
+ $runcups $VALGRIND ../systemv/lp -d Test2 ../examples/testfile.jpg 2>&1 &
pids="$pids $!"
i=`expr $i + 1`