summaryrefslogtreecommitdiffstats
path: root/sim-scripts/sis.in
blob: 9ae084b0d4749abe987ede7a64132543b029ee00 (plain) (blame)
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
#
#  SPARC/SIS Support 
#

runARGS()
{
  echo "-m 64 ${1}"
}

checkBSPFaults()
{
  logfile=$1
  grep "^Memory exception at " ${logfile}
  badAccessExit=$?
  if [ $badAccessExit -eq 0 ] ; then
    return 1
  fi
  return 0
}

bspLimit()
{
  testname=$1
  case ${testname} in
    *)         limit=180 ;;
  esac
  echo ${limit}
}