Revert manifest to default one
[external/cups.git] / test / 5.7-lprm.sh
1 #!/bin/sh
2 #
3 # "$Id: 5.7-lprm.sh 7409 2008-03-29 00:26:03Z mike $"
4 #
5 #   Test the lprm command.
6 #
7 #   Copyright 2007 by Apple Inc.
8 #   Copyright 1997-2005 by Easy Software Products, all rights reserved.
9 #
10 #   These coded instructions, statements, and computer programs are the
11 #   property of Apple Inc. and are protected by Federal copyright
12 #   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
13 #   which should have been included with this file.  If this file is
14 #   file is missing or damaged, see the license at "http://www.cups.org/".
15 #
16
17 echo "LPRM Current Test"
18 echo ""
19 echo "    lpr -o job-hold-until=indefinite testfile.jpg"
20 ../berkeley/lpr -o job-hold-until=indefinite testfile.jpg 2>&1
21 echo "    lprm"
22 ../berkeley/lprm 2>&1
23 if test $? != 0; then
24         echo "    FAILED"
25         exit 1
26 else
27         echo "    PASSED"
28 fi
29 echo ""
30
31 echo "LPRM Destination Test"
32 echo ""
33 echo "    lpr -P Test1 -o job-hold-until=indefinite testfile.jpg"
34 ../berkeley/lpr -P Test1 -o job-hold-until=indefinite testfile.jpg 2>&1
35 echo "    lprm Test1"
36 ../berkeley/lprm Test1 2>&1
37 if test $? != 0; then
38         echo "    FAILED"
39         exit 1
40 else
41         echo "    PASSED"
42 fi
43 echo ""
44
45 #
46 # End of "$Id: 5.7-lprm.sh 7409 2008-03-29 00:26:03Z mike $".
47 #