1*5e7646d2SAndroid Build Coastguard Worker#!/bin/sh 2*5e7646d2SAndroid Build Coastguard Worker# 3*5e7646d2SAndroid Build Coastguard Worker# Psuedo-backend for CUPS testing purposes. 4*5e7646d2SAndroid Build Coastguard Worker# 5*5e7646d2SAndroid Build Coastguard Worker# Copyright 2011 by Apple Inc. 6*5e7646d2SAndroid Build Coastguard Worker# 7*5e7646d2SAndroid Build Coastguard Worker# These coded instructions, statements, and computer programs are the 8*5e7646d2SAndroid Build Coastguard Worker# property of Apple Inc. and are protected by Federal copyright 9*5e7646d2SAndroid Build Coastguard Worker# law. Distribution and use rights are outlined in the file "LICENSE.txt" 10*5e7646d2SAndroid Build Coastguard Worker# which should have been included with this file. If this file is 11*5e7646d2SAndroid Build Coastguard Worker# file is missing or damaged, see the license at "http://www.cups.org/". 12*5e7646d2SAndroid Build Coastguard Worker# 13*5e7646d2SAndroid Build Coastguard Worker# This file is subject to the Apple OS-Developed Software exception. 14*5e7646d2SAndroid Build Coastguard Worker# 15*5e7646d2SAndroid Build Coastguard Worker 16*5e7646d2SAndroid Build Coastguard Workerif test $# = 0; then 17*5e7646d2SAndroid Build Coastguard Worker echo 'direct pseudo:///deskjet "HP DeskJet" "HP DeskJet (pseudo)" "MFG:HP;MDL:DeskJet;CMD:PCL;" "Nowhere"' 18*5e7646d2SAndroid Build Coastguard Worker echo 'direct pseudo:///laserjet "HP LaserJet" "HP LaserJet (pseudo)" "MFG:HP;MDL:LaserJet;CMD:PCL;" "Nowhere"' 19*5e7646d2SAndroid Build Coastguard Worker exit 0 20*5e7646d2SAndroid Build Coastguard Workerfi 21*5e7646d2SAndroid Build Coastguard Worker 22*5e7646d2SAndroid Build Coastguard Workercat $6 >/dev/null 23*5e7646d2SAndroid Build Coastguard Workersleep 5 24*5e7646d2SAndroid Build Coastguard Workerexit 0 25