]> git.ipfire.org Git - thirdparty/cups.git/blame - test/5.1-lpadmin.sh
Load cups into easysw/current.
[thirdparty/cups.git] / test / 5.1-lpadmin.sh
CommitLineData
ef416fc2 1#!/bin/sh
2#
f7faf1f5 3# "$Id: 5.1-lpadmin.sh 4494 2005-02-18 02:18:11Z mike $"
ef416fc2 4#
5# Test the lpadmin command.
6#
7# Copyright 1997-2005 by Easy Software Products, all rights reserved.
8#
9# These coded instructions, statements, and computer programs are the
10# property of Easy Software Products and are protected by Federal
11# copyright law. Distribution and use rights are outlined in the file
12# "LICENSE.txt" which should have been included with this file. If this
13# file is missing or damaged please contact Easy Software Products
14# at:
15#
16# Attn: CUPS Licensing Information
17# Easy Software Products
18# 44141 Airport View Drive, Suite 204
19# Hollywood, Maryland 20636 USA
20#
21# Voice: (301) 373-9600
22# EMail: cups-info@cups.org
23# WWW: http://www.cups.org
24#
25
26echo "Add Printer Test"
27echo ""
28echo " lpadmin -p Test3 -v file:/dev/null -E -m deskjet.ppd"
29../systemv/lpadmin -p Test3 -v file:/dev/null -E -m deskjet.ppd 2>&1
30if test $? != 0; then
31 echo " FAILED"
32 exit 1
33else
34 echo " PASSED"
35fi
36echo ""
37
38echo "Modify Printer Test"
39echo ""
40echo " lpadmin -p Test3 -v file:/tmp/Test3 -o PageSize=A4"
41../systemv/lpadmin -p Test3 -v file:/tmp/Test3 -o PageSize=A4 2>&1
42if test $? != 0; then
43 echo " FAILED"
44 exit 1
45else
46 echo " PASSED"
47fi
48echo ""
49
50echo "Delete Printer Test"
51echo ""
52echo " lpadmin -x Test3"
53../systemv/lpadmin -x Test3 2>&1
54if test $? != 0; then
55 echo " FAILED"
56 exit 1
57else
58 echo " PASSED"
59fi
60echo ""
61
62#
f7faf1f5 63# End of "$Id: 5.1-lpadmin.sh 4494 2005-02-18 02:18:11Z mike $".
ef416fc2 64#