summaryrefslogblamecommitdiffstats
path: root/sim-scripts/sis.in
blob: 927ab7b2adfa0a076447ee4d94c7d8f9543d3b67 (plain) (tree)
1
2
3
4
5
6
7
8


                     
 
         
 

                     



                





                                         





             
                     
                           
      
               
 
#
#  SPARC/SIS Support 
#

runARGS()
{
  # echo "-m 64 ${1}"
  echo "${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}
}