]> git.ipfire.org Git - thirdparty/cups.git/blame - test/5.8-cancel.sh
Import CUPS v2.0b1
[thirdparty/cups.git] / test / 5.8-cancel.sh
CommitLineData
ef416fc2 1#!/bin/sh
2#
1a18c85c 3# "$Id: 5.8-cancel.sh 11398 2013-11-06 20:11:11Z msweet $"
ef416fc2 4#
5# Test the cancel command.
6#
db8b865d 7# Copyright 2007-2013 by Apple Inc.
bd7854cb 8# Copyright 1997-2006 by Easy Software Products, all rights reserved.
ef416fc2 9#
10# These coded instructions, statements, and computer programs are the
bc44d920 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/".
ef416fc2 15#
16
17echo "Cancel Destination Test"
18echo ""
839a51c8 19echo " lp -d Test1 -o job-hold-until=indefinite testfile.jpg"
a2326b5b 20$VALGRIND ../systemv/lp -d Test1 -o job-hold-until=indefinite testfile.jpg 2>&1
ef416fc2 21echo " cancel Test1"
a2326b5b 22$VALGRIND ../systemv/cancel Test1 2>&1
ef416fc2 23if test $? != 0; then
24 echo " FAILED"
25 exit 1
26else
27 echo " PASSED"
28fi
29echo ""
30
31echo "Cancel All Test"
32echo ""
bd7854cb 33echo " cancel -a"
a2326b5b 34$VALGRIND ../systemv/cancel -a 2>&1
ef416fc2 35if test $? != 0; then
36 echo " FAILED"
37 exit 1
38else
39 echo " PASSED"
40fi
41echo ""
42
db8b865d
MS
43echo "Purge All Test"
44echo ""
45echo " cancel -a -x"
46$VALGRIND ../systemv/cancel -a -x 2>&1
47if test $? != 0; then
48 echo " FAILED"
49 exit 1
50else
51 echo " PASSED"
52fi
53echo ""
54
ef416fc2 55#
1a18c85c 56# End of "$Id: 5.8-cancel.sh 11398 2013-11-06 20:11:11Z msweet $".
ef416fc2 57#