ce9ac38342
1) Modifies Benchmarks.py to add support for Android ICS and BBench on Android ICS. 2) An rcS script is added for BBench on ICS. 3) Separates benchmark entries and rcS scripts for GB/ICS 4) Removes the debugging output from the existing BBench run script. These print statements were used for debugging and they seemed to confuse users into believing they should see some terminal output.
38 lines
589 B
Bash
38 lines
589 B
Bash
#!/system/bin/sh
|
|
|
|
#Author: Anthony Gutierrez
|
|
# run script for bbench on gingerbread
|
|
|
|
stop_m5() {
|
|
/sbin/m5 exit
|
|
|
|
return
|
|
}
|
|
|
|
wait_bb_finishfifo() {
|
|
echo "<html><head>FINISH</head><body><h1>FINISH</h1></body></html>" > /data/bbench/finish_fifo.html
|
|
|
|
return
|
|
}
|
|
|
|
mkfifo_bbench() {
|
|
mkfifo /data/bbench/finish_fifo.html
|
|
|
|
return
|
|
}
|
|
|
|
run_bbench_test() {
|
|
mkfifo_bbench
|
|
am start -n com.android.browser/.BrowserActivity
|
|
wait_bb_finishfifo
|
|
|
|
rm /data/bbench/finish_fifo.html
|
|
stop_m5
|
|
|
|
return
|
|
}
|
|
|
|
sleep 10
|
|
/sbin/m5 dumpstats
|
|
/sbin/m5 resetstats
|
|
run_bbench_test
|