1#!/bin/sh 2################################################################################ 3## ## 4## Copyright (c) International Business Machines Corp., 2008 ## 5## ## 6## This program is free software; you can redistribute it and#or modify ## 7## it under the terms of the GNU General Public License as published by ## 8## the Free Software Foundation; either version 2 of the License, or ## 9## (at your option) any later version. ## 10## ## 11## This program is distributed in the hope that it will be useful, but ## 12## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## 13## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## 14## for more details. ## 15## ## 16## You should have received a copy of the GNU General Public License ## 17## along with this program; if not, write to the Free Software ## 18## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ## 19## ## 20################################################################################ 21 22echo "Running in:" 23#rm -f print_caps 24#cp $LTPROOT/testcases/bin/print_caps . 25FIFOFILE="${TMPDIR:=/tmp}/caps_fifo" 26export FIFOFILE 27rm -f $FIFOFILE 28mkfifo $FIFOFILE 29chmod 777 $FIFOFILE 30exit_code=0 31echo "cap_sys_admin tests" 32verify_caps_exec 0 33tmp=$? 34if [ $tmp -ne 0 ]; then 35 exit_code=$tmp 36fi 37 38echo "testing for correct caps" 39verify_caps_exec 1 40tmp=$? 41if [ $tmp -ne 0 ]; then 42 exit_code=$tmp 43fi 44 45echo "testing for correct pI checks" 46inh_capped 47tmp=$? 48if [ $tmp -ne 0 ]; then 49 exit_code=$tmp 50fi 51 52unlink $FIFOFILE 53exit $exit_code 54