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 "testing bounding set reading" 23exit_code=0 24 25cap_bounds_r 26tmp=$? 27if [ $tmp -ne 0 ]; then 28 exit_code=$tmp 29fi 30 31echo "testing bounding set dropping" 32cap_bounds_rw 33tmp=$? 34if [ $tmp -ne 0 ]; then 35 exit_code=$tmp 36fi 37 38echo "checking bounding set constraint in pI" 39cap_bset_inh_bounds 40tmp=$? 41if [ $tmp -ne 0 ]; then 42 exit_code=$tmp 43fi 44 45exec_with_inh 46tmp=$? 47if [ $tmp -ne 0 ]; then 48 exit_code=$tmp; 49fi 50exec_without_inh 51tmp=$? 52if [ $tmp -ne 0 ]; then 53 exit_code=$tmp; 54fi 55 56exit $exit_code 57