summaryrefslogtreecommitdiff
path: root/sim-scripts/gumstix.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-04 12:03:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-08-04 12:03:15 +0000
commit644ed37803a62d71dd3a0bd16e8157f97821c8c3 (patch)
treeb6395e9938369a8f5122649f3f188b5b054b3bbb /sim-scripts/gumstix.in
parentd99114357cf852b1b602f46ba4cd9744be650a0c (diff)
2009-08-04 Xi Yang <hiyangxi@gmail.com>
* gumstix.in: Tinker with script to get more tests to run. Increase time limits. Add LCD.
Diffstat (limited to 'sim-scripts/gumstix.in')
-rw-r--r--sim-scripts/gumstix.in10
1 files changed, 8 insertions, 2 deletions
diff --git a/sim-scripts/gumstix.in b/sim-scripts/gumstix.in
index 5de12b5..cd75660 100644
--- a/sim-scripts/gumstix.in
+++ b/sim-scripts/gumstix.in
@@ -19,10 +19,14 @@ checkBSPFaults()
bspLimit()
{
testname=$1
- case ${tname} in
+ case ${testname} in
*stackchk*)limit=5 ;;
*fatal*) limit=1 ;;
*psxtime*) limit=180 ;;
+ *cpuuse*) limit=180 ;;
+ *sp04*) limit=360 ;;
+ *sp19*) limit=180 ;;
+ *sp20*) limit=180 ;;
*) limit=60 ;;
esac
return ${limit}
@@ -42,8 +46,10 @@ mem_bank: map=M, type=RW, addr=0xA0000000, size=0x4000000
mem_bank: map=I, type=RW, addr=0xB0000000, size=0x100000
mem_bank: map=I, type=RW, addr=0x40000000, size=0x4C000000
shutdown_device: addr=0xb0000000, max_ins=${limit}0000000
+lcd:state=on,type=pxa,mod=gtk
EOF
if [ ${coverage} = yes ] ; then
- echo "code_coverage: state=on, filename=${2}.cov, start=0xA0000000, end=0xA4000000"
+ # Only do coverage on first megabyte of code space
+ echo "code_coverage: state=on, filename=${2}.cov, start=0xA0000000, end=0xA0100000"
fi
}