1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
#! /bin/sh
#
# Copyright (c) International Business Machines Corp., 2005
#
# This program is free software; you can redistribute it and#or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
PATH=$PATH:$LTPTOOLS
export TCID=tpm_version
export TST_TOTAL=1
export TST_COUNT=1
setup()
{
RC=0 # Return code from commands.
if [ -z "$LTPTMP" ] && [ -z "$TMPBASE" ]
then
LTPTMP="/tmp"
else
LTPTMP="$TMPBASE"
fi
export TPM_TMPFILE="$LTPTMP/tst_tpm.err"
rm -f $TPM_TMPFILE 2>&1
tst_resm TINFO "INIT: Inititalizing tests."
which tpm_version 1>$TPM_TMPFILE 2>&1 || RC=$?
if [ $RC -ne 0 ]
then
tst_brk TBROK $TPM_TMPFILE NULL \
"Test: tpm_version command does not exist. Reason:"
return $RC
fi
return $RC
}
test01()
{
RC=0 # Return value from commands
export TCID=tpm_version01 # Test ID
export TST_COUNT=1 # Test number
tpm_version 1>$TPM_TMPFILE 2>&1 || RC=$?
if [ $RC -eq 0 ]
then
tst_resm TPASS "'tpm_version' passed."
RC=0
else
tst_res TFAIL $TPM_TMPFILE "'tpm_version' failed."
RC=1
fi
return $RC
}
cleanup()
{
rm -f $TPM_TMPFILE 2>&1
}
# Function: main
#
# Description: - Execute all tests, report results.
#
# Exit: - zero on success
# - non-zero on failure.
TFAILCNT=0 # Set TFAILCNT to 0, increment on failure.
RC=0 # Return code from tests.
setup || exit $RC # Exit if initializing testcases fails.
export TCID=tpm_version # Test ID
export TST_TOTAL=1 # Total numner of tests in this file.
export TST_COUNT=0 # Initialize identifier
test01 || TFAILCNT=$(($TFAILCNT+1))
cleanup
exit $TFAILCNT
|