From: msweet Date: Mon, 28 Oct 2013 16:00:50 +0000 (+0000) Subject: Verify that the lpadmin command lays down a PPD from a driver info file. X-Git-Tag: v2.2b1~827 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e12bb97dc596c22048864eccecc06bc18bd34b39;p=thirdparty%2Fcups.git Verify that the lpadmin command lays down a PPD from a driver info file. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11368 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/test/5.1-lpadmin.sh b/test/5.1-lpadmin.sh index e4a8ed4ac7..09af2f4f99 100644 --- a/test/5.1-lpadmin.sh +++ b/test/5.1-lpadmin.sh @@ -2,16 +2,16 @@ # # "$Id: 5.1-lpadmin.sh 7494 2008-04-25 18:36:46Z mike $" # -# Test the lpadmin command. +# Test the lpadmin command. # -# Copyright 2007-2012 by Apple Inc. -# Copyright 1997-2005 by Easy Software Products, all rights reserved. +# Copyright 2007-2013 by Apple Inc. +# Copyright 1997-2005 by Easy Software Products, all rights reserved. # -# These coded instructions, statements, and computer programs are the -# property of Apple Inc. and are protected by Federal copyright -# law. Distribution and use rights are outlined in the file "LICENSE.txt" -# which should have been included with this file. If this file is -# file is missing or damaged, see the license at "http://www.cups.org/". +# These coded instructions, statements, and computer programs are the +# property of Apple Inc. and are protected by Federal copyright +# law. Distribution and use rights are outlined in the file "LICENSE.txt" +# which should have been included with this file. If this file is +# file is missing or damaged, see the license at "http://www.cups.org/". # echo "Add Printer Test" @@ -22,7 +22,12 @@ if test $? != 0; then echo " FAILED" exit 1 else - echo " PASSED" + if test -f $CUPS_SERVERROOT/ppd/Test3.ppd; then + echo " PASSED" + else + echo " FAILED (No PPD)" + exit 1 + fi fi echo ""