]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Verify that the lpadmin command lays down a PPD from a driver info file.
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 28 Oct 2013 16:00:50 +0000 (16:00 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 28 Oct 2013 16:00:50 +0000 (16:00 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11368 a1ca3aef-8c08-0410-bb20-df032aa958be

test/5.1-lpadmin.sh

index e4a8ed4ac7db6f919128791774cf4b0582ebcd32..09af2f4f9938a48959e9f8ea8dab0e399b5c5200 100644 (file)
@@ -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 ""