1#!/bin/sh 2# 3# Test the lpc command. 4# 5# Copyright © 2007 by Apple Inc. 6# Copyright © 1997-2005 by Easy Software Products, all rights reserved. 7# 8# Licensed under Apache License v2.0. See the file "LICENSE" for more 9# information. 10# 11 12echo "LPC Test" 13echo "" 14echo " lpc status" 15$runcups $VALGRIND ../berkeley/lpc status 2>&1 16if test $? != 0; then 17 echo " FAILED" 18 exit 1 19else 20 echo " PASSED" 21fi 22echo "" 23