1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-04-23 02:55:26 +01:00
John Richardson c2a68074be Googlephotos productivity workload
A new workload to perform standard productivity tasks within
Googlephotos. Each user event/step is timed and reported back as a
metric. Dumpsys also captures SurfaceFlinger logs for each event for
post analysis.
2016-05-04 11:49:04 +01:00

13 lines
361 B
Bash
Executable File

#!/bin/bash
class_dir=bin/classes/com/arm/wlauto/uiauto
base_class=`python -c "import os, wlauto; print os.path.join(os.path.dirname(wlauto.__file__), 'common', 'android', '*.class')"`
mkdir -p $class_dir
cp $base_class $class_dir
ant build
if [[ -f bin/com.arm.wlauto.uiauto.googlephotos.jar ]]; then
cp bin/com.arm.wlauto.uiauto.googlephotos.jar ..
fi