summaryrefslogblamecommitdiffstats
path: root/sim-scripts/erc32.in
blob: 08060a2dd0ad7bbb7b14323e5cbd6b0d9a941aad (plain) (tree)
1
2
3
4
5
6
7
8
9
 
                              
 
 



                   
 


















                                         
#
#  SPARC/SIS Support for ERC32
#

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}
}