]> git.ipfire.org Git - thirdparty/cups.git/blob - test/5.8-cancel.sh
Remove all of the Subversion keywords from various source files.
[thirdparty/cups.git] / test / 5.8-cancel.sh
1 #!/bin/sh
2 #
3 # Test the cancel command.
4 #
5 # Copyright 2007-2013 by Apple Inc.
6 # Copyright 1997-2006 by Easy Software Products, all rights reserved.
7 #
8 # These coded instructions, statements, and computer programs are the
9 # property of Apple Inc. and are protected by Federal copyright
10 # law. Distribution and use rights are outlined in the file "LICENSE.txt"
11 # which should have been included with this file. If this file is
12 # file is missing or damaged, see the license at "http://www.cups.org/".
13 #
14
15 echo "Cancel Destination Test"
16 echo ""
17 echo " lp -d Test1 -o job-hold-until=indefinite testfile.jpg"
18 $VALGRIND ../systemv/lp -d Test1 -o job-hold-until=indefinite testfile.jpg 2>&1
19 echo " cancel Test1"
20 $VALGRIND ../systemv/cancel Test1 2>&1
21 if test $? != 0; then
22 echo " FAILED"
23 exit 1
24 else
25 echo " PASSED"
26 fi
27 echo ""
28
29 echo "Cancel All Test"
30 echo ""
31 echo " cancel -a"
32 $VALGRIND ../systemv/cancel -a 2>&1
33 if test $? != 0; then
34 echo " FAILED"
35 exit 1
36 else
37 echo " PASSED"
38 fi
39 echo ""
40
41 echo "Purge All Test"
42 echo ""
43 echo " cancel -a -x"
44 $VALGRIND ../systemv/cancel -a -x 2>&1
45 if test $? != 0; then
46 echo " FAILED"
47 exit 1
48 else
49 echo " PASSED"
50 fi
51 echo ""